-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathagda2lambox.cabal
More file actions
85 lines (80 loc) · 3.21 KB
/
agda2lambox.cabal
File metadata and controls
85 lines (80 loc) · 3.21 KB
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
80
81
82
83
84
cabal-version: 2.2
name: agda2lambox
version: 1.1
author: Orestis Melkonian, Carlos Tomé Cortiñas, Bohdan Liesnikov
category: Language, Compiler
build-type: Simple
synopsis: Compiling Agda code to λ-box.
license: MIT
license-file: LICENSE
extra-doc-files: README.md
source-repository head
type: git
location: https://github.com/omelkonian/agda2lambox.git
executable agda2lambox
hs-source-dirs: src
main-is: Main.hs
other-modules: Agda.Utils,
Agda.Utils.EliminateDefaults,
Agda.Utils.EtaExpandConstructors,
Agda.Utils.Simplify,
Agda.Utils.Treeless,
Agda2Lambox.Compile.Target,
Agda2Lambox.Compile.Utils,
Agda2Lambox.Compile.Monad,
Agda2Lambox.Compile.Term,
Agda2Lambox.Compile.Function,
Agda2Lambox.Compile.Inductive,
Agda2Lambox.Compile.Type,
Agda2Lambox.Compile.TypeScheme,
Agda2Lambox.Compile,
LambdaBox.Names,
LambdaBox.Term,
LambdaBox.Type,
LambdaBox.Env,
LambdaBox,
CodeGen.Rocq,
CodeGen.SExpr,
Paths_agda2lambox
autogen-modules: Paths_agda2lambox
build-depends: base >= 4.10 && < 4.22,
Agda >= 2.8 && < 2.9,
deepseq >= 1.4.4 && < 1.6,
sexpresso >= 1.2.5 && < 1.3,
pretty-show,
containers,
directory,
filepath,
text,
mtl,
unicode-data
default-language: Haskell2010
default-extensions:
LambdaCase RecordWildCards PatternSynonyms TupleSections
ViewPatterns PatternGuards
ScopedTypeVariables
TypeFamilies TypeOperators TypeApplications
FunctionalDependencies TypeSynonymInstances ConstraintKinds
DoAndIfThenElse BlockArguments MultiWayIf
ImportQualifiedPost
test-suite agda2lambox-tests
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends: base >= 4.10 && < 4.22,
tasty >= 1.4 && < 1.6,
tasty-hunit >= 0.10 && < 0.11,
process >= 1.6 && < 1.7,
filepath >= 1.4 && < 1.5,
directory >= 1.3 && < 1.4,
text >= 1.2 && < 2.2
build-tool-depends: agda2lambox:agda2lambox
default-language: Haskell2010
default-extensions:
LambdaCase RecordWildCards PatternSynonyms TupleSections
ViewPatterns PatternGuards
ScopedTypeVariables
TypeFamilies TypeOperators TypeApplications
FunctionalDependencies TypeSynonymInstances ConstraintKinds
DoAndIfThenElse BlockArguments MultiWayIf
ImportQualifiedPost