forked from Gabriella439/grace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
grace.cabal
76 lines (72 loc) · 2.31 KB
/
grace.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
72
73
74
75
76
cabal-version: >=1.10
name: grace
version: 1.0.0
license-file: LICENSE
author: Gabriel Gonzalez
maintainer: [email protected]
build-type: Simple
library
hs-source-dirs: src
build-depends: base
, ansi-terminal
, containers
, Earley
, filepath
, generic-lens
, lens
, megaparsec
, mtl
, optparse-applicative
, parser-combinators
, prettyprinter
, prettyprinter-ansi-terminal
, string-interpolate
, terminal-size
, text
, unordered-containers
exposed-modules: Grace
, Grace.Context
, Grace.Domain
, Grace.Existential
, Grace.Interpret
, Grace.Infer
, Grace.Lexer
, Grace.Location
, Grace.Monotype
, Grace.Normalize
, Grace.Parser
, Grace.Pretty
, Grace.Syntax
, Grace.Type
, Grace.Value
default-language: Haskell2010
ghc-options: -Wall
executable grace
main-is: Main.hs
build-depends: base, grace
hs-source-dirs: grace
default-language: Haskell2010
test-suite tasty
type: exitcode-stdio-1.0
main-is: Main.hs
build-depends: base
, directory
, filepath
, grace
, mtl
, prettyprinter
, tasty
, tasty-hunit
, tasty-silver
, text
hs-source-dirs: tasty
default-language: Haskell2010
ghc-options: -Wall
test-suite doctest
type: exitcode-stdio-1.0
main-is: Main.hs
build-depends: base
, doctest
hs-source-dirs: doctest
default-language: Haskell2010
ghc-options: -Wall