-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathagda-core.cabal
79 lines (75 loc) · 2.42 KB
/
agda-core.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
cabal-version: 3.0
name: agda-core
version: 0.1.0.0
-- synopsis:
-- description:
license: Unlicense
license-file: LICENSE
author: Jesper Cockx, Lucas Escot
maintainer: [email protected], [email protected]
-- copyright:
build-type: Simple
-- extra-doc-files: CHANGELOG.md
-- extra-source-files:
common warnings
ghc-options:
-Wall
-fno-warn-unused-matches
-fno-warn-unused-imports
-fno-warn-unused-local-binds
library
import: warnings
exposed-modules: Agda.Core.Context
, Agda.Core.Conversion
, Agda.Core.Converter
, Agda.Core.GlobalScope
, Agda.Core.Reduce
, Agda.Core.Signature
, Agda.Core.Substitute
, Agda.Core.Syntax
, Agda.Core.TCM
, Agda.Core.TCMInstances
, Agda.Core.Typechecker
, Agda.Core.Typing
, Agda.Core.Utils
, Scope.All
, Scope.Core
, Scope.Diff
, Scope.In
, Scope.Reverse
, Scope.Split
, Scope.Sub
, Utils.Either
, Utils.List
build-depends: base >= 4.17 && < 4.21
hs-source-dirs: lib
default-language: GHC2021
ghc-options:
-- agda2hs generates many (safe) incomplete patterns
-fno-warn-incomplete-patterns
-fno-warn-name-shadowing
executable agda-core
import: warnings
hs-source-dirs: app
default-language: GHC2021
main-is: Main.hs
other-modules: Agda.Core.ToCore
, Paths_agda_core
autogen-modules: Paths_agda_core
default-extensions:
LambdaCase
RecordWildCards
MultiWayIf
BlockArguments
ViewPatterns
DerivingStrategies
build-depends:
base >= 4.17 && < 4.21,
Agda >= 2.7.0 && < 2.8.0,
bytestring >= 0.11.5 && < 0.13,
containers >= 0.6 && < 0.8,
unordered-containers >= 0.2.19 && < 0.3,
mtl >= 2.2.2 && < 2.4,
directory >= 1.2.6.2 && < 1.4,
filepath >= 1.4.1.0 && < 1.5,
agda-core