-
Notifications
You must be signed in to change notification settings - Fork 33
/
grace.cabal
148 lines (120 loc) · 3.82 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
cabal-version: >=1.10
name: grace
version: 1.0.0
license-file: LICENSE
author: Gabriella Gonzalez
maintainer: [email protected]
build-type: Simple
library
hs-source-dirs: src
build-depends: base
, aeson
, Earley
, containers
, filepath
, generic-lens
, insert-ordered-containers
, lens
, megaparsec
, modern-uri
, mtl
, parser-combinators
, prettyprinter
, prettyprinter-ansi-terminal
, safe-exceptions
, scientific
, string-interpolate
, template-haskell
, text >= 1.2.4.0
, unordered-containers
exposed-modules: Grace.Context
, Grace.Domain
, Grace.Existential
, Grace.Input
, Grace.Import
, Grace.Interpret
, Grace.Infer
, Grace.Lexer
, Grace.Location
, Grace.Monotype
, Grace.Normalize
, Grace.Parser
, Grace.Pretty
, Grace.Syntax
, Grace.HTTP
, Grace.TH
, Grace.Type
, Grace.Value
, Grace.Width
other-modules: Grace.Compat
default-language: Haskell2010
ghc-options: -Wall
if impl(ghcjs)
hs-source-dirs: ghcjs
build-depends: ghcjs-base
, ghcjs-fetch
else
hs-source-dirs: ghc
build-depends: ansi-terminal
, haskeline
, http-client
, http-client-tls
, http-types
, optparse-applicative
, repline
, terminal-size
exposed-modules: Grace
, Grace.REPL
executable grace
main-is: Main.hs
build-depends: base
, grace
hs-source-dirs: grace
default-language: Haskell2010
if impl(ghcjs)
buildable: False
executable try-grace
main-is: Main.hs
build-depends: base
, aeson
, async
, ghcjs-base
, containers
, grace
, insert-ordered-containers
, mtl
, scientific
, stm
, text
, transformers
, uri-encode
hs-source-dirs: try-grace
ghc-options: -Wall
default-language: Haskell2010
if !impl(ghcjs)
buildable: False
test-suite tasty
type: exitcode-stdio-1.0
main-is: Main.hs
build-depends: base
, directory
, filepath
, grace
, mtl
, prettyprinter
, safe-exceptions
, 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