-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtapl.cabal
53 lines (50 loc) · 1.25 KB
/
tapl.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
cabal-version: 2.4
name: tapl
version: 0.1.0.0
author: dbnor0
maintainer: [email protected]
extra-source-files:
CHANGELOG.md
README.md
executable tapl
main-is: Main.hs
other-modules:
Arith.Eval.SmallStep
Arith.Exercises
Arith.Interpreter
Arith.Parser
Arith.Syntax
Common.Parser
Effectful.Eval.Nameless
Effectful.Eval.SmallStep
Effectful.Interpreter
Effectful.Parser
Effectful.Syntax
Effectful.Typecheck
NamelessRep.Exercises
TypedArith.Eval.SmallStep
TypedArith.Interpreter
TypedArith.Parser
TypedArith.Syntax
TypedArith.Typecheck
TypedLC.Eval.Nameless
TypedLC.Eval.SmallStep
TypedLC.Interpreter
TypedLC.Parser
TypedLC.Syntax
TypedLC.Typecheck
UntypedLC.Eval.SmallStep
UntypedLC.Exercises
UntypedLC.Parser
UntypedLC.Syntax
build-depends:
base ^>=4.16.4.0
, containers
, directory
, megaparsec
, mtl
, ordered-containers
, parser-combinators
, text
hs-source-dirs: app
default-language: Haskell2010