-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpurescript.cabal
316 lines (297 loc) · 13.7 KB
/
purescript.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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
name: purescript
version: 0.8.0.0
cabal-version: >=1.8
build-type: Simple
license: MIT
license-file: LICENSE
copyright: (c) 2013-15 Phil Freeman, (c) 2014-15 Gary Burgess
maintainer: Phil Freeman <[email protected]>
stability: experimental
synopsis: PureScript Programming Language Compiler
description: A small strongly, statically typed programming language with expressive types, inspired by Haskell and compiling to Javascript.
category: Language
Homepage: http://www.purescript.org/
author: Phil Freeman <[email protected]>,
Gary Burgess <[email protected]>,
Hardy Jones <[email protected]>,
Harry Garrood <[email protected]>
tested-with: GHC==7.8.4, GHC==7.10.3, GHC==8.0.1
extra-source-files: examples/passing/*.purs
, examples/failing/*.purs
, examples/docs/bower_components/purescript-prelude/src/*.purs
, examples/docs/bower.json
, examples/docs/src/*.purs
, tests/support/setup.js
, tests/support/package.json
, tests/support/bower.json
, tests/support/setup-win.cmd
, tests/support/flattened/*.purs
, tests/support/flattened/*.js
, tests/support/psci/*.purs
, tests/support/prelude/bower.json
, tests/support/prelude/src/*.purs
, tests/support/prelude/src/*.js
, tests/support/prelude/LICENSE
, stack.yaml
, stack-lts-2.yaml
, stack-lts-3.yaml
, stack-nightly.yaml
, README.md
, INSTALL.md
, CONTRIBUTORS.md
, CONTRIBUTING.md
source-repository head
type: git
location: https://github.com/purescript/purescript.git
library
build-depends: base >=4.6 && <5,
base-compat >=0.6.0,
lifted-base >= 0.2.3 && < 0.2.4,
monad-control >= 1.0.0.0 && < 1.1,
transformers-base >= 0.4.0 && < 0.5,
containers -any,
unordered-containers -any,
dlist -any,
directory >= 1.2,
filepath -any,
mtl >= 2.1.0 && < 2.3.0,
parsec -any,
transformers >= 0.3.0 && < 0.6,
transformers-compat >= 0.3.0,
utf8-string >= 1 && < 2,
pattern-arrows >= 0.0.2 && < 0.1,
time -any,
boxes >= 0.1.4 && < 0.2.0,
aeson >= 0.8 && < 0.12,
vector -any,
bower-json >= 0.7,
aeson-better-errors >= 0.8,
bytestring -any,
text -any,
split -any,
language-javascript == 0.5.*,
syb -any,
Glob >= 0.7 && < 0.8,
process >= 1.2.0 && < 1.5,
safe >= 0.3.9 && < 0.4,
semigroups >= 0.16.2 && < 0.19,
parallel >= 3.2 && < 3.3
exposed-modules: Language.PureScript
Language.PureScript.AST
Language.PureScript.AST.Binders
Language.PureScript.AST.Declarations
Language.PureScript.AST.Operators
Language.PureScript.AST.SourcePos
Language.PureScript.AST.Traversals
Language.PureScript.AST.Exported
Language.PureScript.Bundle
Language.PureScript.Crash
Language.PureScript.Externs
Language.PureScript.CodeGen
Language.PureScript.CodeGen.JS
Language.PureScript.CodeGen.JS.AST
Language.PureScript.CodeGen.JS.Common
Language.PureScript.CodeGen.JS.Optimizer
Language.PureScript.CodeGen.JS.Optimizer.Blocks
Language.PureScript.CodeGen.JS.Optimizer.Common
Language.PureScript.CodeGen.JS.Optimizer.Inliner
Language.PureScript.CodeGen.JS.Optimizer.MagicDo
Language.PureScript.CodeGen.JS.Optimizer.TCO
Language.PureScript.CodeGen.JS.Optimizer.Unused
Language.PureScript.CodeGen.Lisp
Language.PureScript.CodeGen.Lisp.AST
Language.PureScript.CodeGen.Lisp.Common
Language.PureScript.CodeGen.Lisp.Optimizer
Language.PureScript.CodeGen.Lisp.Optimizer.Blocks
Language.PureScript.CodeGen.Lisp.Optimizer.Common
Language.PureScript.CodeGen.Lisp.Optimizer.Inliner
Language.PureScript.CodeGen.Lisp.Optimizer.MagicDo
-- Language.PureScript.CodeGen.JS.Optimizer.TCO
Language.PureScript.CodeGen.Lisp.Optimizer.Unused
Language.PureScript.Constants
Language.PureScript.CoreFn
Language.PureScript.CoreFn.Ann
Language.PureScript.CoreFn.Binders
Language.PureScript.CoreFn.Desugar
Language.PureScript.CoreFn.Expr
Language.PureScript.CoreFn.Literals
Language.PureScript.CoreFn.Meta
Language.PureScript.CoreFn.Module
Language.PureScript.CoreFn.Traversals
Language.PureScript.Comments
Language.PureScript.Environment
Language.PureScript.Errors
Language.PureScript.Kinds
Language.PureScript.Linter
Language.PureScript.Linter.Exhaustive
Language.PureScript.Linter.Imports
Language.PureScript.Make
Language.PureScript.ModuleDependencies
Language.PureScript.Names
Language.PureScript.Options
Language.PureScript.Parser
Language.PureScript.Parser.Lexer
Language.PureScript.Parser.Common
Language.PureScript.Parser.Declarations
Language.PureScript.Parser.JS
Language.PureScript.Parser.Kinds
Language.PureScript.Parser.State
Language.PureScript.Parser.Types
Language.PureScript.Pretty
Language.PureScript.Pretty.Common
Language.PureScript.Pretty.JS
Language.PureScript.Pretty.Lisp
Language.PureScript.Pretty.Kinds
Language.PureScript.Pretty.Types
Language.PureScript.Pretty.Values
Language.PureScript.Renamer
Language.PureScript.Sugar
Language.PureScript.Sugar.BindingGroups
Language.PureScript.Sugar.CaseDeclarations
Language.PureScript.Sugar.DoNotation
Language.PureScript.Sugar.Names
Language.PureScript.Sugar.Names.Env
Language.PureScript.Sugar.Names.Imports
Language.PureScript.Sugar.Names.Exports
Language.PureScript.Sugar.ObjectWildcards
Language.PureScript.Sugar.Operators
Language.PureScript.Sugar.TypeClasses
Language.PureScript.Sugar.TypeClasses.Deriving
Language.PureScript.Sugar.TypeDeclarations
Language.PureScript.Traversals
Language.PureScript.TypeChecker
Language.PureScript.TypeChecker.Entailment
Language.PureScript.TypeChecker.Kinds
Language.PureScript.TypeChecker.Monad
Language.PureScript.TypeChecker.Rows
Language.PureScript.TypeChecker.Skolems
Language.PureScript.TypeChecker.Subsumption
Language.PureScript.TypeChecker.Synonyms
Language.PureScript.TypeChecker.Types
Language.PureScript.TypeChecker.Unify
Language.PureScript.TypeClassDictionaries
Language.PureScript.Types
Language.PureScript.Docs
Language.PureScript.Docs.Convert
Language.PureScript.Docs.Convert.Single
Language.PureScript.Docs.Convert.ReExports
Language.PureScript.Docs.Render
Language.PureScript.Docs.Types
Language.PureScript.Docs.RenderedCode
Language.PureScript.Docs.RenderedCode.Types
Language.PureScript.Docs.RenderedCode.Render
Language.PureScript.Docs.AsMarkdown
Language.PureScript.Docs.ParseAndDesugar
Language.PureScript.Docs.Utils.MonoidExtras
Language.PureScript.Publish
Language.PureScript.Publish.Utils
Language.PureScript.Publish.ErrorsWarnings
Language.PureScript.Publish.BoxesHelpers
Control.Monad.Logger
Control.Monad.Supply
Control.Monad.Supply.Class
System.IO.UTF8
extensions: DataKinds
exposed: True
buildable: True
hs-source-dirs: src
other-modules: Paths_purescript
ghc-options: -Wall -O2
executable psc
build-depends: base >=4 && <5, base-compat >=0.6.0,
containers -any, directory -any, filepath -any,
mtl -any, optparse-applicative >= 0.10.0, parsec -any, purescript -any,
time -any, transformers -any, transformers-compat -any, Glob >= 0.7 && < 0.8,
aeson >= 0.8 && < 0.12, bytestring -any, utf8-string >= 1 && < 2
main-is: Main.hs
buildable: True
hs-source-dirs: psc
other-modules: JSON
ghc-options: -Wall -O2 -fno-warn-unused-do-bind -threaded -rtsopts "-with-rtsopts=-N"
executable plc
build-depends: base >=4 && <5, base-compat >=0.6.0,
containers -any, directory -any, filepath -any,
mtl -any, optparse-applicative >= 0.10.0, parsec -any, purescript -any,
time -any, transformers -any, transformers-compat -any, Glob >= 0.7 && < 0.8,
aeson >= 0.8 && < 0.11, bytestring -any, utf8-string >= 1 && < 2
main-is: Main.hs
buildable: True
hs-source-dirs: plc
other-modules:
ghc-options: -Wall -O2 -fno-warn-unused-do-bind -threaded -rtsopts "-with-rtsopts=-N"
executable psci
build-depends: base >=4 && <5, containers -any, directory -any, filepath -any,
mtl -any, optparse-applicative >= 0.10.0, parsec -any,
haskeline >= 0.7.0.0, purescript -any, transformers -any,
transformers-compat -any, process -any, time -any, Glob -any, base-compat >=0.6.0,
boxes >= 0.1.4 && < 0.2.0
main-is: Main.hs
buildable: True
hs-source-dirs: psci psci/main
other-modules: PSCi
PSCi.Types
PSCi.Parser
PSCi.Directive
PSCi.Completion
PSCi.IO
ghc-options: -Wall -O2
executable psc-docs
build-depends: base >=4 && <5, purescript -any,
optparse-applicative >= 0.10.0, process -any, mtl -any,
split -any, ansi-wl-pprint -any, directory -any,
filepath -any, Glob -any, transformers -any,
transformers-compat -any
main-is: Main.hs
buildable: True
hs-source-dirs: psc-docs
other-modules: Ctags
Etags
Tags
ghc-options: -Wall -O2
executable psc-publish
build-depends: base >=4 && <5, purescript -any, bytestring -any, aeson -any, optparse-applicative -any
main-is: Main.hs
buildable: True
hs-source-dirs: psc-publish
ghc-options: -Wall -O2
executable psc-hierarchy
build-depends: base >=4 && <5, purescript -any, optparse-applicative >= 0.10.0,
process -any, mtl -any, parsec -any, filepath -any, directory -any,
Glob -any
main-is: Main.hs
buildable: True
hs-source-dirs: hierarchy
other-modules:
ghc-options: -Wall -O2
executable psc-bundle
main-is: Main.hs
other-modules:
other-extensions:
build-depends: base >=4 && <5,
purescript -any,
filepath -any,
directory -any,
mtl -any,
transformers -any,
transformers-compat -any,
optparse-applicative >= 0.10.0,
Glob -any
ghc-options: -Wall -O2
hs-source-dirs: psc-bundle
test-suite tests
build-depends: base >=4 && <5, containers -any, directory -any,
filepath -any, mtl -any, parsec -any, purescript -any,
transformers -any, process -any, transformers-compat -any, time -any,
Glob -any, aeson-better-errors -any, bytestring -any, aeson -any,
base-compat -any, haskeline >= 0.7.0.0, optparse-applicative -any,
boxes -any, HUnit -any
ghc-options: -Wall
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules: TestUtils
TestCompiler
TestDocs
TestPscPublish
TestPsci
buildable: True
hs-source-dirs: tests psci