-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprototype.cabal
47 lines (45 loc) · 1.62 KB
/
prototype.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
name: prototype
version: 0.1.0.0
build-type: Simple
cabal-version: >=1.10
license: BSD3
executable prototype
main-is: Main.hs
build-depends: base
, megaparsec >= 6.4
, pretty
, mtl
, transformers
other-modules: Backend.FcTypeChecker
, Backend.FcTypes
, Backend.FcSimplify
, Frontend.FunDep
, Frontend.HsParser
, Frontend.HsRenamer
, Frontend.HsTypeChecker
, Frontend.HsTypes
, Frontend.TcConditions
, Frontend.TcEntail
, Frontend.TcGen
, Frontend.TcMonad
, Frontend.TcType
, Frontend.TcUnify
, Utils.Alternative
, Utils.Annotated
, Utils.AssocList
, Utils.Ctx
, Utils.Errors
, Utils.FreeVars
, Utils.Kind
, Utils.ListT
, Utils.PrettyPrint
, Utils.SnocList
, Utils.Substitution
, Utils.Trace
, Utils.Unique
, Utils.Utils
, Utils.Var
default-language: Haskell2010
ghc-options: -Wall -fdefer-typed-holes -fno-warn-unused-imports
if !impl(ghc >= 8.0)
build-depends: semigroups