-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlambda-parser.cabal
49 lines (47 loc) · 1.08 KB
/
lambda-parser.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
cabal-version: 3.6
name: lambda-parser
version: 0.1.0.0
author: nigosto
maintainer: [email protected]
extra-source-files:
CHANGELOG.md
README.md
executable lambda-parser
main-is: Main.hs
other-modules:
Interaction
Parser
Transformers
Generators
Substitution.Named
Substitution.Nameless
BetaRedexes
Utils.Variables
Terms
Libs.Parser
build-depends:
base ^>=4.17.2.0,
containers ^>= 0.7
hs-source-dirs: src
default-language: Haskell2010
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: src src/Tests
main-is: Test.hs
default-language: Haskell2010
build-depends:
base ^>=4.17.2.0,
HUnit ^>=1.6,
containers ^>= 0.7
other-modules:
Tests.Parser
Interaction
Parser
Transformers
Generators
Substitution.Named
Substitution.Nameless
BetaRedexes
Utils.Variables
Terms
Libs.Parser