-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
gren.cabal
263 lines (229 loc) · 5.66 KB
/
gren.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
Cabal-version: 3.8
Name: gren
Version: 0.5.0
Synopsis:
The `gren` command line interface.
Description:
This includes commands like `gren make`, `gren repl`, and many others
for helping make Gren developers happy and productive.
Author: Robin Heggelund Hansen
Copyright:
Original work Copyright (c) 2011-2021, Evan Czaplicki.
Modified work Copyright (c) 2021-present, The Gren CONTRIBUTORS
License: BSD-3-Clause
License-file: LICENSE
Homepage: https://gren-lang.org
Bug-reports: https://github.com/gren-lang/compiler/issues
Category: Compiler, Language
Build-type: Simple
source-repository head
type: git
location: git://github.com/gren/compiler.git
Flag dev {
Description: Turn off optimization and make warnings errors
Default: False
}
Common gren-common
if flag(dev)
ghc-options: -O0 -Wall
else
ghc-options: -O2 -Wall -Werror -threaded "-with-rtsopts=-N"
default-language: GHC2021
Hs-Source-Dirs:
compiler/src
builder/src
terminal
other-modules:
Format
Init
Make
Docs
Repl
Package.Install
Package.Uninstall
Package.Outdated
Package.Bump
Package.Diff
Package.Validate
-- from builder/
AbsoluteSrcDir
Build
BackgroundWriter
Deps.Diff
Deps.Package
Deps.Solver
File
Generate
Git
Reporting
Reporting.Exit
Reporting.Exit.Help
Reporting.Task
Directories
-- Gren things
Gren.Outline
Gren.Platform
Gren.Details
Gren.PossibleFilePath
--
Gren.Compiler.Imports
Gren.Compiler.Type
Gren.Compiler.Type.Extract
Gren.Constraint
Gren.Docs
Gren.Int
Gren.Float
Gren.Format
Gren.Format.Normalize
Gren.Interface
Gren.Kernel
Gren.Licenses
Gren.Magnitude
Gren.ModuleName
Gren.Package
Gren.String
Gren.Version
-- data structures
Data.Bag
Data.Index
Data.Map.Utils
Data.Name
Data.NonEmptyList
Data.OneOrMore
Data.Utf8
-- json
Json.Decode
Json.Encode
Json.String
-- from compiler/
AST.Canonical
AST.Optimized
AST.Source
AST.SourceComments
AST.Utils.Binop
AST.Utils.Type
Canonicalize.Effects
Canonicalize.Environment
Canonicalize.Environment.Dups
Canonicalize.Environment.Foreign
Canonicalize.Environment.Local
Canonicalize.Expression
Canonicalize.Module
Canonicalize.Pattern
Canonicalize.Type
Compile
Generate.Html
Generate.Node
Generate.JavaScript
Generate.JavaScript.Builder
Generate.JavaScript.Expression
Generate.JavaScript.Functions
Generate.JavaScript.Name
Generate.Mode
Generate.SourceMap
Generate.VLQ
Nitpick.Debug
Nitpick.PatternMatches
Optimize.Case
Optimize.DecisionTree
Optimize.Expression
Optimize.Module
Optimize.Names
Optimize.Port
Parse.Declaration
Parse.Expression
Parse.Keyword
Parse.Module
Parse.Number
Parse.Pattern
Parse.Space
Parse.String
Parse.Symbol
Parse.Type
Parse.Variable
Parse.Primitives
Reporting.Annotation
Reporting.Doc
Reporting.Error
Reporting.Error.Canonicalize
Reporting.Error.Docs
Reporting.Error.Import
Reporting.Error.Json
Reporting.Error.Main
Reporting.Error.Pattern
Reporting.Error.Syntax
Reporting.Error.Type
Reporting.Render.Code
Reporting.Render.Type
Reporting.Render.Type.Localizer
Reporting.Report
Reporting.Result
Reporting.Suggest
Reporting.Warning
Type.Constrain.Expression
Type.Constrain.Module
Type.Constrain.Pattern
Type.Error
Type.Instantiate
Type.Occurs
Type.Solve
Type.Type
Type.Unify
Type.UnionFind
Paths_gren
Build-depends:
ansi-terminal >= 0.11 && < 0.12,
ansi-wl-pprint >= 0.6.8 && < 0.7,
base >= 4.17 && <5,
binary >= 0.8 && < 0.9,
bytestring >= 0.11 && < 0.12,
containers >= 0.6 && < 0.7,
directory >= 1.2.3.0 && < 2.0,
edit-distance >= 0.2 && < 0.3,
filelock,
filepath >= 1 && < 2.0,
ghc-prim >= 0.5.2,
haskeline,
mtl >= 2.2.1 && < 3,
prettyprint-avh4 >= 0.1.1.0 && < 0.2,
process,
raw-strings-qq,
scientific,
time >= 1.9.1,
utf8-string,
vector,
text >= 2 && < 3,
base64-bytestring >= 1.2 && < 2,
indexed-traversable
Executable gren
Import:
gren-common
default-language: GHC2021
Main-Is:
Main.hs
Test-Suite gren-tests
Import:
gren-common
default-language: GHC2021
Type:
exitcode-stdio-1.0
Hs-Source-Dirs:
tests
Main-Is:
Spec.hs
other-modules:
Helpers.Instances
Helpers.Parse
-- tests
Generate.VLQSpec
Integration.FormatSpec
Parse.AliasSpec
Parse.RecordUpdateSpec
Parse.SpaceSpec
Parse.UnderscorePatternSpec
Parse.MultilineStringSpec
Parse.DeclSpec
Build-Depends:
hspec >= 2.7.10 && < 3
Build-Tool-Depends:
hspec-discover:hspec-discover >= 2.7.10 && < 3