-
Notifications
You must be signed in to change notification settings - Fork 1
/
purescript.cabal
562 lines (542 loc) · 18.3 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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
cabal-version: 3.0
name: purescript
-- Note: don't add prerelease identifiers here! Add them in app/Version.hs and npm-package/package.json instead.
version: 0.15.13
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
stability: experimental
homepage: http://www.purescript.org/
bug-reports: https://github.com/purescript/purescript/issues
author: Phil Freeman <paf31@cantab.net>
maintainer: Gary Burgess <gary.burgess@gmail.com>, Hardy Jones <jones3.hardy@gmail.com>, Harry Garrood <harry@garrood.me>, Christoph Hegemann <christoph.hegemann1337@gmail.com>, Liam Goodacre <goodacre.liam@gmail.com>, Nathan Faubion <nathan@n-son.com>
copyright: (c) 2013-17 Phil Freeman, (c) 2014-19 Gary Burgess, (c) other contributors (see CONTRIBUTORS.md)
license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
extra-source-files:
app/static/*.css
app/static/*.less
bundle/build.sh
bundle/README
tests/purs/**/*.js
tests/purs/**/*.js.map
tests/purs/**/*.purs
tests/purs/**/*.json
tests/purs/**/*.out
tests/json-compat/**/*.json
tests/support/*.json
tests/support/checkSourceMapValidity.js
tests/support/psci/**/*.purs
tests/support/psci/**/*.edit
tests/support/pscide/src/**/*.purs
tests/support/pscide/src/**/*.js
tests/support/pscide/src/**/*.fail
-- stack.yaml
README.md
INSTALL.md
CONTRIBUTORS.md
CONTRIBUTING.md
VERSIONING_POLICY.md
.hspec
source-repository head
type: git
location: https://github.com/purescript/purescript
flag release
description: Mark this build as a release build: prevents inclusion of extra info e.g. commit SHA in --version output)
manual: False
default: False
common defaults
ghc-options:
-- This list taken from https://medium.com/mercury-bank/enable-all-the-warnings-a0517bc081c3
-- Enable all warnings with -Weverything, then disable the ones we don’t care about
-Weverything
-- missing-exported-signatures turns off the more strict -Wmissing-signatures. See https://ghc.haskell.org/trac/ghc/ticket/14794#ticket
-Wno-missing-exported-signatures
-- Requires explicit imports of _every_ function (e.g. ‘$’); too strict
-Wno-missing-import-lists
-- When GHC can’t specialize a polymorphic function. No big deal and requires fixing underlying libraries to solve.
-Wno-missed-specialisations
-Wno-all-missed-specialisations
-- Don’t use Safe Haskell warnings
-Wno-unsafe
-Wno-safe
-Wno-trustworthy-safe
-Wno-inferred-safe-imports
-Wno-missing-safe-haskell-mode
-- Warning for polymorphic local bindings; nothing wrong with those.
-Wno-missing-local-signatures
-- Don’t warn if the monomorphism restriction is used
-Wno-monomorphism-restriction
-- Remaining options don't come from the above blog post
-Wno-missing-deriving-strategies
-Wno-missing-export-lists
-Wno-missing-kind-signatures
-Wno-partial-fields
-- TODO: Remove
-O0
default-language: Haskell2010
default-extensions:
BangPatterns
ConstraintKinds
DataKinds
DefaultSignatures
DeriveFunctor
DeriveFoldable
DeriveTraversable
DeriveGeneric
DerivingStrategies
DerivingVia
EmptyDataDecls
FlexibleContexts
FlexibleInstances
GeneralizedNewtypeDeriving
ImportQualifiedPost
KindSignatures
LambdaCase
MultiParamTypeClasses
NamedFieldPuns
NoImplicitPrelude
PatternGuards
PatternSynonyms
RankNTypes
RecordWildCards
OverloadedRecordDot
OverloadedStrings
ScopedTypeVariables
TupleSections
TypeFamilies
ViewPatterns
build-tool-depends:
happy:happy ^>= 1.20.0
build-depends:
-- NOTE: Please do not edit these version constraints manually. They are
-- deliberately made narrow because changing the dependency versions in
-- use can often result in changes in the compiler's behaviour. The
-- PureScript compiler is an executable first and foremost, and only
-- incidentally a library, and supporting a wide range of dependencies is
-- not a goal.
--
-- These version ranges are generated from taking a Stackage snapshot and
-- then generating PVP-compliant bounds based on that snapshot. You can
-- update to a newer snapshot as follows:
--
-- 1. Remove all version constraints from this cabal file (apart from
-- language-javascript).
-- 2. Update stack.yaml as required to select a new snapshot, and check
-- everything builds correctly with stack.
-- 3. Run `stack sdist`; this will produce a source distribution including
-- a modified version of the cabal file, which includes bounds for all
-- dependencies (because of `pvp-bounds: both` in stack.yaml).
-- 4. Copy the version bounds from the library's build-depends section
-- to here.
--
-- This procedure allows us to take advantage of Stackage snapshots to
-- easily perform updates, while also ensuring that the compiler will be
-- built with (almost) the same install plan for both cabal and stack
-- users.
--
-- We need to be especially careful with
-- language-javascript, because it forms a part of the compiler's
-- public API. In the case of language-javascript specifically, all FFI
-- modules must be parseable by this library otherwise the compiler
-- will reject them. It should therefore always be pinned to a single
-- specific version.
aeson ==2.2.3.0,
aeson-better-errors >=0.9.1.1 && <0.10,
algebraic-graphs ==0.7,
ansi-terminal >=0.11.3 && <0.12,
array >=0.5.4.0 && <0.6,
base ==4.16.4.0,
blaze-html >=0.9.1.2 && <0.10,
bower-json >=1.1.0.0 && <1.2,
boxes >=0.1.5 && <0.2,
bound ==2.0.7,
bytestring >=0.11.3.1 && <0.12,
Cabal >=3.6.3.0 && <3.7,
cborg >=0.2.7.0 && <0.3,
deriving-compat ==0.6.5,
serialise >=0.2.5.0 && <0.3,
cheapskate >=0.1.1.2 && <0.2,
clock >=0.8.3 && <0.9,
containers >=0.6.5.1 && <0.7,
cryptonite ==0.30.*,
data-ordlist >=0.4.7.0 && <0.5,
data-default-class >=0.1.2.0 && < 0.2.0.0,
deepseq >=1.4.6.1 && <1.5,
directory >=1.3.6.2 && <1.4,
dlist ==1.0,
edit-distance >=0.2.2.1 && <0.3,
file-embed >=0.0.15.0 && <0.1,
filepath >=1.4.2.2 && <1.5,
Glob >=0.10.2 && <0.11,
hashable,
haskeline >=0.8.2 && <0.9,
language-javascript ==0.7.0.0,
lens ==5.2.3,
lifted-async >=0.10.2.2 && <0.11,
lifted-base >=0.2.3.12 && <0.3,
memory >=0.17.0 && <0.18,
monad-control >=1.0.3.1 && <1.1,
monad-logger >=0.3.36 && <0.4,
monoidal-containers >=0.6.2.0 && <0.7,
mtl >=2.2.2 && <2.3,
parallel >=3.2.2.0 && <3.3,
parsec >=3.1.15.0 && <3.2,
pattern-arrows >=0.0.2 && <0.1,
process >= 1.6.13.1 && <2.0,
prettyprinter ==1.7.1,
protolude >=0.3.1 && <0.4,
regex-tdfa >=1.3.1.2 && <1.4,
safe >=0.3.19 && <0.4,
scientific >=0.3.7.0 && <0.4,
semigroups ==0.20,
semialign ==1.3.1,
sourcemap >=0.1.7 && <0.2,
random ==1.2.1.2,
stm >=2.5.0.2 && <2.6,
stringsearch >=0.3.6.6 && <0.4,
template-haskell >=2.18.0.0 && <2.19,
text >=1.2.5.0 && <2.3,
th-abstraction ==0.7.0.0,
these ==1.2.1,
time >=1.11.1.1 && <1.12,
transformers >=0.5.6.2 && <0.6,
transformers-base >=0.4.6 && <0.5,
utf8-string >=1.0.2 && <1.1,
vector ==0.13.1.0,
witherable >=0.4.2 && <0.5,
plutus-core ==1.32.1.0,
plutus-core:plutus-ir
library
import: defaults
hs-source-dirs: src
exposed-modules:
Control.Monad.Logger
Control.Monad.Supply
Control.Monad.Supply.Class
Language.PureScript
Language.PureScript.AST
Language.PureScript.AST.Binders
Language.PureScript.AST.Declarations
Language.PureScript.AST.Declarations.ChainId
Language.PureScript.AST.Exported
Language.PureScript.AST.Literals
Language.PureScript.AST.Operators
Language.PureScript.AST.SourcePos
Language.PureScript.AST.Traversals
Language.PureScript.AST.Utils
Language.PureScript.Bundle
Language.PureScript.CodeGen
Language.PureScript.CodeGen.UPLC
Language.PureScript.Constants.Libs
Language.PureScript.Constants.Purus
Language.PureScript.Constants.PLC
Language.PureScript.Constants.PLC.TH
Language.PureScript.CoreFn
Language.PureScript.CoreFn.Ann
Language.PureScript.CoreFn.Binders
Language.PureScript.CoreFn.CSE
Language.PureScript.CoreFn.Desugar
Language.PureScript.CoreFn.Desugar.Utils
Language.PureScript.CoreFn.Desugar.TypeClasses
Language.PureScript.CoreFn.Expr
Language.PureScript.CoreFn.FromJSON
Language.PureScript.CoreFn.Meta
Language.PureScript.CoreFn.Module
Language.PureScript.CoreFn.Optimizer
Language.PureScript.CoreFn.ToJSON
Language.PureScript.CoreFn.Traversals
Language.PureScript.CoreFn.TypeLike
Language.PureScript.CoreFn.Utils
Language.PureScript.CoreImp
Language.PureScript.CoreImp.AST
Language.PureScript.CoreImp.Module
Language.PureScript.CoreImp.Optimizer
Language.PureScript.CoreImp.Optimizer.Blocks
Language.PureScript.CoreImp.Optimizer.Common
Language.PureScript.CoreImp.Optimizer.Inliner
Language.PureScript.CoreImp.Optimizer.MagicDo
Language.PureScript.CoreImp.Optimizer.TCO
Language.PureScript.CoreImp.Optimizer.Unused
Language.PureScript.CST
Language.PureScript.CST.Convert
Language.PureScript.CST.Errors
Language.PureScript.CST.Flatten
Language.PureScript.CST.Layout
Language.PureScript.CST.Lexer
Language.PureScript.CST.Monad
Language.PureScript.CST.Parser
Language.PureScript.CST.Positions
Language.PureScript.CST.Print
Language.PureScript.CST.Traversals
Language.PureScript.CST.Traversals.Type
Language.PureScript.CST.Types
Language.PureScript.CST.Utils
Language.PureScript.Comments
Language.PureScript.Constants.Prim
Language.PureScript.Crash
Language.PureScript.Docs
Language.PureScript.Docs.AsHtml
Language.PureScript.Docs.AsMarkdown
Language.PureScript.Docs.Collect
Language.PureScript.Docs.Convert
Language.PureScript.Docs.Convert.ReExports
Language.PureScript.Docs.Convert.Single
Language.PureScript.Docs.Css
Language.PureScript.Docs.Prim
Language.PureScript.Docs.Render
Language.PureScript.Docs.RenderedCode
Language.PureScript.Docs.RenderedCode.RenderType
Language.PureScript.Docs.RenderedCode.Types
Language.PureScript.Docs.Tags
Language.PureScript.Docs.Types
Language.PureScript.Docs.Utils.MonoidExtras
Language.PureScript.Environment
Language.PureScript.Errors
Language.PureScript.Errors.JSON
Language.PureScript.Externs
Language.PureScript.Graph
Language.PureScript.Hierarchy
Language.PureScript.Ide
Language.PureScript.Ide.CaseSplit
Language.PureScript.Ide.Command
Language.PureScript.Ide.Completion
Language.PureScript.Ide.Error
Language.PureScript.Ide.Externs
Language.PureScript.Ide.Filter
Language.PureScript.Ide.Filter.Declaration
Language.PureScript.Ide.Filter.Imports
Language.PureScript.Ide.Imports
Language.PureScript.Ide.Imports.Actions
Language.PureScript.Ide.Logging
Language.PureScript.Ide.Matcher
Language.PureScript.Ide.Prim
Language.PureScript.Ide.Rebuild
Language.PureScript.Ide.Reexports
Language.PureScript.Ide.SourceFile
Language.PureScript.Ide.State
Language.PureScript.Ide.Types
Language.PureScript.Ide.Usage
Language.PureScript.Ide.Util
Language.PureScript.Interactive
Language.PureScript.Interactive.Completion
Language.PureScript.Interactive.Directive
Language.PureScript.Interactive.IO
Language.PureScript.Interactive.Message
Language.PureScript.Interactive.Module
Language.PureScript.Interactive.Parser
Language.PureScript.Interactive.Printer
Language.PureScript.Interactive.Types
Language.PureScript.Label
Language.PureScript.Linter
Language.PureScript.Linter.Exhaustive
Language.PureScript.Linter.Imports
Language.PureScript.Linter.Wildcards
Language.PureScript.Make
Language.PureScript.Make.Actions
Language.PureScript.Make.BuildPlan
Language.PureScript.Make.Cache
Language.PureScript.Make.Monad
Language.PureScript.ModuleDependencies
Language.PureScript.Names
Language.PureScript.Options
Language.PureScript.Pretty
Language.PureScript.Pretty.Common
Language.PureScript.Pretty.Types
Language.PureScript.Pretty.Values
Language.PureScript.PSString
Language.PureScript.Publish
Language.PureScript.Publish.BoxesHelpers
Language.PureScript.Publish.ErrorsWarnings
Language.PureScript.Publish.Registry.Compat
Language.PureScript.Publish.Utils
Language.PureScript.Renamer
Language.PureScript.Roles
Language.PureScript.Sugar
Language.PureScript.Sugar.AdoNotation
Language.PureScript.Sugar.BindingGroups
Language.PureScript.Sugar.CaseDeclarations
Language.PureScript.Sugar.DoNotation
Language.PureScript.Sugar.LetPattern
Language.PureScript.Sugar.Names
Language.PureScript.Sugar.Names.Common
Language.PureScript.Sugar.Names.Env
Language.PureScript.Sugar.Names.Exports
Language.PureScript.Sugar.Names.Imports
Language.PureScript.Sugar.ObjectWildcards
Language.PureScript.Sugar.Operators
Language.PureScript.Sugar.Operators.Binders
Language.PureScript.Sugar.Operators.Common
Language.PureScript.Sugar.Operators.Expr
Language.PureScript.Sugar.Operators.Types
Language.PureScript.Sugar.TypeClasses
Language.PureScript.Sugar.TypeClasses.Deriving
Language.PureScript.Sugar.TypeDeclarations
Language.PureScript.Traversals
Language.PureScript.TypeChecker
Language.PureScript.TypeChecker.Deriving
Language.PureScript.TypeChecker.Entailment
Language.PureScript.TypeChecker.Entailment.Coercible
Language.PureScript.TypeChecker.Entailment.IntCompare
Language.PureScript.TypeChecker.Kinds
Language.PureScript.TypeChecker.Monad
Language.PureScript.TypeChecker.Roles
Language.PureScript.TypeChecker.Skolems
Language.PureScript.TypeChecker.Subsumption
Language.PureScript.TypeChecker.Synonyms
Language.PureScript.TypeChecker.Types
Language.PureScript.TypeChecker.TypeSearch
Language.PureScript.TypeChecker.Unify
Language.PureScript.TypeClassDictionaries
Language.PureScript.Types
System.IO.UTF8
Language.Purus.Config
Language.Purus.Debug
Language.Purus.Docs
Language.Purus.Eval
Language.Purus.IR
Language.Purus.IR.Utils
Language.Purus.Make
Language.Purus.Make.Prim
Language.Purus.Pipeline.Monad
Language.Purus.Pipeline.CompileToPIR
Language.Purus.Pipeline.CompileToPIR.Utils
Language.Purus.Pipeline.DesugarCore
Language.Purus.Pipeline.DesugarObjects
Language.Purus.Pipeline.EliminateCases
Language.Purus.Pipeline.GenerateDatatypes
Language.Purus.Pipeline.GenerateDatatypes.Utils
Language.Purus.Pipeline.Inline
Language.Purus.Pipeline.Inline.Types
Language.Purus.Pipeline.Instantiate
Language.Purus.Pipeline.Lift
Language.Purus.Pipeline.Lift.Types
Language.Purus.Pretty
Language.Purus.Pretty.Common
Language.Purus.Pretty.Expr
Language.Purus.Pretty.Types
Language.Purus.Prim.Data
Language.Purus.Prim.Ledger
Language.Purus.Prim.LedgerData
Language.Purus.Prim.Utils
Language.Purus.Types
Language.Purus.Utils
other-modules:
Data.Text.PureScript
Language.PureScript.Constants.TH
Paths_purescript
autogen-modules:
Paths_purescript
executable purs
import: defaults
hs-source-dirs: app
main-is: Main.hs
ghc-options: -fno-warn-unused-do-bind -threaded -rtsopts -with-rtsopts=-N -Wno-unused-packages
build-depends:
ansi-wl-pprint >=0.6.9 && <0.7,
exceptions >=0.10.4 && <0.11,
network >=3.1.2.7 && <3.2,
optparse-applicative ==0.18.1.0,
prettyprinter-ansi-terminal ==1.1.3,
purescript,
purs-lib
if flag(release)
cpp-options: -DRELEASE
else
build-depends:
gitrev >=1.2.0 && <1.4
other-modules:
Paths_purescript
autogen-modules:
Paths_purescript
library purs-lib
import: defaults
hs-source-dirs: purs-lib
-- main-is: Main.hs
ghc-options: -fno-warn-unused-do-bind -threaded -rtsopts -with-rtsopts=-N -Wno-unused-packages
build-depends:
ansi-wl-pprint >=0.6.9 && <0.7,
exceptions >=0.10.4 && <0.11,
network >=3.1.2.7 && <3.2,
optparse-applicative,
prettyprinter-ansi-terminal,
purescript
if flag(release)
cpp-options: -DRELEASE
else
build-depends:
gitrev >=1.2.0 && <1.4
exposed-modules:
Command.Bundle
Command.Compile
Command.Docs
Command.Docs.Html
Command.Docs.Markdown
Command.Graph
Command.Hierarchy
Command.Ide
Command.Publish
Command.REPL
Version
Paths_purescript
autogen-modules:
Paths_purescript
test-suite tests
import: defaults
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Main.hs
-- Not a problem for this warning to arise in tests
ghc-options: -Wno-incomplete-uni-patterns -Wno-unused-packages
build-depends:
purescript,
purs-lib,
flat ==0.6,
generic-random >=1.5.0.1 && <1.6,
hspec >= 2.10.7 && < 3,
HUnit >=1.6.2.0 && <1.7,
newtype >=0.2.2.0 && <0.3,
QuickCheck >=2.14.2 && <2.15,
regex-base >=0.94.0.2 && <0.95,
split >=0.2.3.4 && <0.3,
typed-process >=0.2.10.1 && <0.3,
tasty-expected-failure,
tasty ==1.5,
tasty-hunit
build-tool-depends:
hspec-discover:hspec-discover -any
-- we need the compiler's executable available for the ide tests
, purescript:purs -any
other-modules:
Language.PureScript.Ide.CompletionSpec
Language.PureScript.Ide.FilterSpec
Language.PureScript.Ide.ImportsSpec
Language.PureScript.Ide.MatcherSpec
Language.PureScript.Ide.RebuildSpec
Language.PureScript.Ide.ReexportsSpec
Language.PureScript.Ide.SourceFileSpec
Language.PureScript.Ide.StateSpec
Language.PureScript.Ide.Test
Language.PureScript.Ide.UsageSpec
PscIdeSpec
TestAst
TestCompiler
TestCoreFn
TestCst
TestDocs
TestGraph
TestHierarchy
TestIde
TestMake
TestPrimDocs
TestPsci
TestPsci.CommandTest
TestPsci.CompletionTest
TestPsci.EvalTest
TestPsci.TestEnv
TestPscPublish
TestPurus
TestSourceMaps
TestUtils
Paths_purescript