-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathttie.cabal
61 lines (57 loc) · 1.04 KB
/
ttie.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
name: ttie
version: 0.1.0
cabal-version: >=1.8
build-type: Simple
license: BSD3
description:
library
ghc-options: -Wall
build-depends:
base >= 4.7,
parsec >= 3,
transformers,
mtl >= 2.2,
template-haskell >= 2.8,
containers >= 0.5
exposed-modules:
Util.MyPrelude
Util.Parser
Util.PrettyM
Util.WLPPrint
Util.Tagged.Map
Util.Tagged.Seq
Util.Tagged.Var
Names
Substitution
Tokenizer
Syntax
TcMonad
EqZipper
Eval
Typing
other-modules:
Util.Tagged.Internal
hs-source-dirs: src
executable ttie
main-is: src/Main.hs
build-depends:
ttie,
optparse-applicative,
base >= 4.7,
transformers,
mtl >= 2.2,
containers >= 0.5,
lens-simple >= 0.1,
filepath >= 1.4,
directory >= 1.2
test-suite tests
type: exitcode-stdio-1.0
main-is: src/Tests.hs
build-depends:
ttie,
tasty,
base >= 4.7,
parsec >= 3,
transformers,
mtl >= 2.2,
containers >= 0.5