-
Notifications
You must be signed in to change notification settings - Fork 0
/
boat.cabal
71 lines (70 loc) · 2.66 KB
/
boat.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
62
63
64
65
66
67
68
69
70
71
name: boat
version: 0.1.0.0
synopsis: The reference compiler for the Boat programming language
-- description:
license: BSD3
license-file: LICENSE
author: Scott Taylor
maintainer: [email protected]
-- copyright:
category: Language
build-type: Simple
cabal-version: >=1.10
executable boat
ghc-options: -Wall -Wno-name-shadowing -Wno-unused-do-bind -Wno-unused-top-binds
main-is: Main.hs
other-modules: Utility.Basics,
Utility.TopSort,
Utility.ErrorPrint,
Utility.AST,
Utility.Program,
Utility,
Parse.Primitives,
Parse.Expression,
Parse.Module,
Parse,
Analyze.NameResolve,
Analyze.AssocOps
Analyze.InferVariance,
Analyze.InferTypes
Analyze
default-extensions: FlexibleContexts,
FlexibleInstances,
FunctionalDependencies,
NamedFieldPuns,
RecordWildCards,
RecursiveDo,
BlockArguments,
OverloadedStrings,
PatternSynonyms,
LambdaCase,
KindSignatures,
Rank2Types,
MultiParamTypeClasses,
GeneralizedNewtypeDeriving,
UndecidableInstances,
StandaloneDeriving,
ScopedTypeVariables,
ConstraintKinds,
ViewPatterns,
MonadFailDesugaring,
DeriveFunctor,
DeriveFoldable,
DeriveTraversable,
DeriveGeneric
build-depends: base >=4.9,
megaparsec >=8.0,
containers >=0.6,
mtl >=2.2,
transformers >=0.5,
text >=1.2,
ansi-terminal >=0.9,
haskeline >=0.7,
filepath >=1.4,
directory >=1.3,
optparse-applicative >=0.15,
edit-distance >=0.2,
unordered-containers >=0.2.11,
hashable >=1.0.1.1
hs-source-dirs: src
default-language: Haskell2010