-
Notifications
You must be signed in to change notification settings - Fork 0
/
DLam.cabal
43 lines (41 loc) · 845 Bytes
/
DLam.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
cabal-version: 2.4
name: DLam
version: 0.1.0
executable DLam
main-is: Main.hs
-- Modules included in this executable, other than Main.
other-modules:
Lang
Parse
TypeCheck
Error
Context
MonadTypeCheck
UnionFind
Unify
Reduce
Equality
Termination
Transitive
Substitution
Elab
Common
Datatype
ghc-options:
-threaded
-rtsopts
-with-rtsopts=-N
-- other-extensions:
build-depends:
base >=4.7
, parsec
, pretty
, prettyprinter
, prettyprinter-ansi-terminal
, text
, mtl
, disjoint-containers
, extra
, optparse-applicative
default-extensions:
DuplicateRecordFields