-
Notifications
You must be signed in to change notification settings - Fork 52
/
swarm.cabal
1378 lines (1189 loc) · 29 KB
/
swarm.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
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
cabal-version: 3.6
name: swarm
version: 0.6.0.0
synopsis: 2D resource gathering game with programmable robots
description:
Swarm is a 2D programming and resource gathering
game. Program your robots to explore the world and
collect resources, which in turn allows you to
build upgraded robots that can run more
interesting and complex programs. See the
<https://github.com/swarm-game/swarm/blob/main/README.md README>
for more information and instructions on how to
play or contribute!
== Module organization
For developers getting oriented, Swarm's modules are organized into
sublibraries. Roughly in order from inner to outer, they are:
* swarm-util: miscellaneous utilities
* swarm-lang: parsing, typechecking, etc. for the Swarm language
* swarm-topography: working with location in 2D (sub-)worlds
* swarm-scenario: scenario descriptions, parsing, & processing
* swarm-engine: game simulation
* swarm-doc: generating documentation
* swarm-tui: textual user interface
* swarm-web: web interface
* swarm: the swarm executable
<<docs/image/sublibrary-graph.svg>>
See the [Swarm module guide](https://github.com/swarm-game/swarm/wiki/Module-guide)
for a more in-depth guide to the codebase.
license: BSD-3-Clause
license-file: LICENSE
author: Brent Yorgey
maintainer: [email protected]
bug-reports: https://github.com/swarm-game/swarm/issues
copyright: Brent Yorgey 2021
category: Game
tested-with: ghc ==9.2.8 || ==9.4.8 || ==9.6.5 || ==9.8.2
extra-doc-files:
CHANGELOG.md
extra-source-files:
editors/emacs/*.el
editors/vim/*.lua
editors/vim/*.vim
editors/vscode/syntaxes/*.yaml
example/*.sw
extra-doc-files: docs/image/sublibrary-graph.svg
data-dir: data/
data-files:
*.txt
*.yaml
scenarios/**/*.sw
scenarios/**/*.txt
scenarios/**/*.yaml
test/language-snippets/**/*.sw
test/standalone-topography/*.png
test/standalone-topography/*.yaml
worlds/*.world
source-repository head
type: git
location: git://github.com/swarm-game/swarm.git
flag ci
description: Make warnings error
default: False
manual: True
common common
if flag(ci)
ghc-options: -Werror
ghc-options:
-Wall
-Wcompat
-Widentities
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wno-star-is-type
-Wpartial-fields
default-language: Haskell2010
common stan-config
ghc-options:
-fwrite-ide-info
-- Harmless extensions from GHC2021
common ghc2021-extensions
ghc-options:
-Wprepositive-qualified-module
-Wunused-packages
default-extensions:
-- Note we warn on prequalified
-- Not GHC2021, but until we get \cases we use \case a lot
BangPatterns
DeriveAnyClass
DeriveDataTypeable
DeriveFunctor
DeriveGeneric
DeriveTraversable
ExplicitForAll
FlexibleContexts
FlexibleInstances
GADTSyntax
ImportQualifiedPost
LambdaCase
MultiParamTypeClasses
NumericUnderscores
RankNTypes
ScopedTypeVariables
StandaloneDeriving
TupleSections
TypeApplications
TypeOperators
common base
build-depends: base >=4.14 && <4.20
common AhoCorasick
build-depends: AhoCorasick >=0.0.4 && <0.0.5
common JuicyPixels
build-depends: JuicyPixels >=3.3 && <3.4
common QuickCheck
build-depends: QuickCheck >=2.14 && <2.16
common SHA
build-depends: SHA >=1.6.4 && <1.6.5
common aeson
build-depends: aeson >=2.2 && <2.3
common array
build-depends: array >=0.5.4 && <0.6
common astar
build-depends: astar >=0.3 && <0.3.1
common boolexpr
build-depends: boolexpr >=0.2 && <0.3
common brick
build-depends: brick >=2.1.1 && <2.5
common brick-list-skip
build-depends: brick-list-skip >=0.1.1.2 && <0.2
common brick-tabular-list
build-depends: brick-tabular-list >=2.2.0 && <2.2.1
common bytestring
build-depends: bytestring >=0.10 && <0.13
common clock
build-depends: clock >=0.8.2 && <0.9
common colour
build-depends: colour >=2.3.6 && <2.4
common commonmark
build-depends: commonmark >=0.2 && <0.3
common commonmark-extensions
build-depends: commonmark-extensions >=0.2 && <0.3
common containers
build-depends: containers >=0.6.2 && <0.8
common cookie
build-depends: cookie >=0.4 && <1.0
common data-fix
build-depends: data-fix >=0.3 && <0.4
common deriving-compat
build-depends: deriving-compat >=0.6 && <0.7
common directory
build-depends: directory >=1.3 && <1.4
common dotgen
build-depends: dotgen >=0.4 && <0.5
common either
build-depends: either >=5.0 && <5.1
common exceptions
build-depends: exceptions >=0.10 && <0.11
common extra
build-depends: extra >=1.7 && <1.8
common filepath
build-depends: filepath >=1.4 && <1.5
common free
build-depends: free >=5.2 && <5.3
common fused-effects
build-depends: fused-effects >=1.1.1.1 && <1.2
common fused-effects-lens
build-depends: fused-effects-lens >=1.2.0.1 && <1.3
common fuzzy
build-depends: fuzzy >=0.1 && <0.2
common generic-data
build-depends: generic-data >=1.0 && <1.2
common githash
build-depends: githash >=0.1.6 && <0.2
common hashable
build-depends: hashable >=1.3.4 && <1.5
common hsnoise
build-depends: hsnoise >=0.0.3 && <0.1
common http-client
build-depends: http-client >=0.7 && <0.8
common http-client-tls
build-depends: http-client-tls >=0.3 && <0.4
common http-types
build-depends: http-types >=0.12 && <0.13
common lens
build-depends: lens >=4.19 && <5.4
common linear
build-depends: linear >=1.21.6 && <1.24
common lsp
build-depends: lsp >=2.4 && <2.7
common megaparsec
build-depends: megaparsec >=9.6.1 && <9.7
common minimorph
build-depends: minimorph >=0.3 && <0.4
common MissingH
build-depends: MissingH >=1.4 && <2
common monad-logger
build-depends: monad-logger >=0.3.0 && <0.4.0
common mtl
build-depends: mtl >=2.2.2 && <2.4
common murmur3
build-depends: murmur3 >=1.0.4 && <1.1
common natural-sort
build-depends: natural-sort >=0.1.2 && <0.2
common nonempty-containers
build-depends: nonempty-containers >=0.3.4 && <0.3.5
common optparse-applicative
build-depends: optparse-applicative >=0.16 && <0.19
common palette
build-depends: palette >=0.3 && <0.4
common pandoc
build-depends: pandoc >=3.0 && <3.6
common pandoc-types
build-depends: pandoc-types >=1.23 && <1.24
common parser-combinators
build-depends: parser-combinators >=1.2 && <1.4
common prettyprinter
build-depends: prettyprinter >=1.7.0 && <1.8
common random
build-depends: random >=1.2.0 && <1.3
common scientific
build-depends: scientific >=0.3.6 && <0.3.9
common servant
build-depends: servant >=0.19 && <0.22
common servant-docs
build-depends: servant-docs >=0.12 && <0.14
common servant-multipart
build-depends: servant-multipart >=0.11 && <1.0
common servant-JuicyPixels
build-depends: servant-JuicyPixels >=0.3.1 && <0.3.2
common servant-server
build-depends: servant-server >=0.19 && <0.22
common simple-enumeration
build-depends: simple-enumeration >=0.2 && <0.3
common split
build-depends: split >=0.2.3 && <0.3
common sqlite-simple
build-depends: sqlite-simple >=0.4.19.0 && <0.4.20
common syb
build-depends: syb >=0.7 && <0.8
common tagged
build-depends: tagged >=0.8 && <0.9
common tasty
build-depends: tasty >=0.10 && <1.6
common tasty-bench
build-depends: tasty-bench >=0.3.1 && <0.4
common tasty-expected-failure
build-depends: tasty-expected-failure >=0.12 && <0.13
common tasty-hunit
build-depends: tasty-hunit >=0.10 && <0.11
common tasty-quickcheck
build-depends: tasty-quickcheck >=0.10 && <0.11
common template-haskell
build-depends: template-haskell >=2.16 && <2.22
common terminal-size
build-depends: terminal-size >=0.3 && <1.0
common text
build-depends: text >=1.2.4 && <2.2
common text-rope
build-depends: text-rope >=0.2 && <0.3
common text-zipper
build-depends: text-zipper >=0.10 && <0.14
common time
build-depends: time >=1.9 && <1.15
common transformers
build-depends: transformers >=0.5 && <0.7
common unicode-show
build-depends: unicode-show >=0.1 && <0.2
common unordered-containers
build-depends: unordered-containers >=0.2.14 && <0.3
common utf8-string
build-depends: utf8-string >=1.0 && <2.0
common vector
build-depends: vector >=0.12 && <0.14
common vty
build-depends: vty >=6.1 && <6.3
common vty-crossplatform
build-depends: vty-crossplatform >=0.4 && <0.5
common wai
build-depends: wai >=3.2 && <3.3
common wai-app-static
build-depends: wai-app-static >=3.1.8 && <3.2
common wai-extra
build-depends: wai-extra >=3.1 && <3.2
common warp
build-depends: warp >=3.2 && <3.5
common witch
build-depends: witch >=1.1.1.0 && <1.3
common witherable
build-depends: witherable >=0.4 && <0.5
common word-wrap
build-depends: word-wrap >=0.5 && <0.6
common yaml
build-depends: yaml >=0.11 && <0.11.12.0
library swarm-lang
import:
stan-config, common, ghc2021-extensions,
aeson,
base,
commonmark,
commonmark-extensions,
containers,
data-fix,
deriving-compat,
extra,
free,
fused-effects,
generic-data,
hashable,
lens,
lsp,
megaparsec,
mtl,
parser-combinators,
prettyprinter,
split,
syb,
template-haskell,
terminal-size,
text,
text-rope,
unicode-show,
vector,
vty,
witch,
yaml,
visibility: public
-- cabal-gild: discover src/swarm-lang
exposed-modules:
Swarm.Effect.Unify
Swarm.Effect.Unify.Common
Swarm.Effect.Unify.Fast
Swarm.Effect.Unify.Naive
Swarm.Language.Capability
Swarm.Language.Context
Swarm.Language.Elaborate
Swarm.Language.Format
Swarm.Language.JSON
Swarm.Language.Key
Swarm.Language.Kindcheck
Swarm.Language.LSP
Swarm.Language.LSP.Hover
Swarm.Language.LSP.VarUsage
Swarm.Language.Parser
Swarm.Language.Parser.Comment
Swarm.Language.Parser.Core
Swarm.Language.Parser.Lex
Swarm.Language.Parser.QQ
Swarm.Language.Parser.Record
Swarm.Language.Parser.Term
Swarm.Language.Parser.Type
Swarm.Language.Parser.Util
Swarm.Language.Pipeline
Swarm.Language.Pipeline.QQ
Swarm.Language.Requirements
Swarm.Language.Requirements.Analysis
Swarm.Language.Requirements.Type
Swarm.Language.Syntax
Swarm.Language.Syntax.AST
Swarm.Language.Syntax.CommandMetadata
Swarm.Language.Syntax.Comments
Swarm.Language.Syntax.Constants
Swarm.Language.Syntax.Loc
Swarm.Language.Syntax.Pattern
Swarm.Language.Syntax.Pretty
Swarm.Language.Syntax.Util
Swarm.Language.Text.Markdown
Swarm.Language.Typecheck
Swarm.Language.Typed
Swarm.Language.Types
Swarm.Language.Value
other-modules: Paths_swarm
autogen-modules: Paths_swarm
build-depends: swarm:swarm-util
hs-source-dirs: src/swarm-lang
ghc-options:
-hiedir=.hie/src/swarm-lang
default-language: Haskell2010
default-extensions:
-- Avoid unexpected unevaluated thunk buildup
-- See discussion in #415
StrictData
library swarm-topography
import:
stan-config, common, ghc2021-extensions,
AhoCorasick,
JuicyPixels,
aeson,
array,
either,
base,
containers,
extra,
hashable,
lens,
linear,
nonempty-containers,
servant-docs,
text,
transformers,
unordered-containers,
vector,
yaml,
visibility: public
-- cabal-gild: discover src/swarm-topography
exposed-modules:
Swarm.Game.Location
Swarm.Game.Scenario.Topography.Area
Swarm.Game.Scenario.Topography.Grid
Swarm.Game.Scenario.Topography.Navigation.Waypoint
Swarm.Game.Scenario.Topography.Placement
Swarm.Game.Scenario.Topography.ProtoCell
Swarm.Game.Scenario.Topography.Rasterize
Swarm.Game.Scenario.Topography.Structure
Swarm.Game.Scenario.Topography.Structure.Assembly
Swarm.Game.Scenario.Topography.Structure.Named
Swarm.Game.Scenario.Topography.Structure.Overlay
Swarm.Game.Scenario.Topography.Structure.Recognition
Swarm.Game.Scenario.Topography.Structure.Recognition.Log
Swarm.Game.Scenario.Topography.Structure.Recognition.Precompute
Swarm.Game.Scenario.Topography.Structure.Recognition.Prep
Swarm.Game.Scenario.Topography.Structure.Recognition.Registry
Swarm.Game.Scenario.Topography.Structure.Recognition.Static
Swarm.Game.Scenario.Topography.Structure.Recognition.Symmetry
Swarm.Game.Scenario.Topography.Structure.Recognition.Tracking
Swarm.Game.Scenario.Topography.Structure.Recognition.Type
Swarm.Game.Scenario.Topography.Terraform
Swarm.Game.Universe
Swarm.Game.World.Coords
other-modules: Paths_swarm
autogen-modules: Paths_swarm
build-depends:
swarm:swarm-util
hs-source-dirs: src/swarm-topography
ghc-options:
-hiedir=.hie/src/swarm-topography
default-language: Haskell2010
default-extensions:
-- Avoid unexpected unevaluated thunk buildup
-- See discussion in #415
StrictData
library swarm-scenario
import:
stan-config, common, ghc2021-extensions,
JuicyPixels,
aeson,
array,
base,
boolexpr,
bytestring,
clock,
colour,
containers,
directory,
either,
extra,
filepath,
fused-effects,
hashable,
nonempty-containers,
hsnoise,
lens,
linear,
megaparsec,
monad-logger,
mtl,
murmur3,
palette,
parser-combinators,
prettyprinter,
random,
servant-docs,
simple-enumeration,
tagged,
text,
vector,
vty,
witch,
yaml,
visibility: public
-- cabal-gild: discover src/swarm-scenario
exposed-modules:
Swarm.Constant
Swarm.Game.Achievement.Definitions
Swarm.Game.Device
Swarm.Game.Display
Swarm.Game.Entity
Swarm.Game.Entity.Cosmetic
Swarm.Game.Entity.Cosmetic.Assignment
Swarm.Game.Ingredients
Swarm.Game.Land
Swarm.Game.Recipe
Swarm.Game.Robot
Swarm.Game.Robot.Walk
Swarm.Game.Scenario
Swarm.Game.Scenario.Objective
Swarm.Game.Scenario.Objective.Graph
Swarm.Game.Scenario.Objective.Logic
Swarm.Game.Scenario.Objective.Validation
Swarm.Game.Scenario.RobotLookup
Swarm.Game.Scenario.Style
Swarm.Game.Scenario.Topography.Cell
Swarm.Game.Scenario.Topography.Center
Swarm.Game.Scenario.Topography.EntityFacade
Swarm.Game.Scenario.Topography.Navigation.Portal
Swarm.Game.Scenario.Topography.WorldDescription
Swarm.Game.Scenario.Topography.WorldPalette
Swarm.Game.State.Config
Swarm.Game.State.Landscape
Swarm.Game.Terrain
Swarm.Game.World
Swarm.Game.World.Abstract
Swarm.Game.World.Compile
Swarm.Game.World.Eval
Swarm.Game.World.Gen
Swarm.Game.World.Interpret
Swarm.Game.World.Load
Swarm.Game.World.Modify
Swarm.Game.World.Parse
Swarm.Game.World.Render
Swarm.Game.World.Syntax
Swarm.Game.World.Typecheck
Swarm.Util.Content
other-modules: Paths_swarm
autogen-modules: Paths_swarm
build-depends:
swarm:swarm-lang,
swarm:swarm-topography,
swarm:swarm-util,
hs-source-dirs: src/swarm-scenario
ghc-options:
-hiedir=.hie/src/swarm-scenario
default-language: Haskell2010
default-extensions:
-- Avoid unexpected unevaluated thunk buildup
-- See discussion in #415
StrictData
library swarm-engine
import:
stan-config, common, ghc2021-extensions,
SHA,
aeson,
array,
astar,
base,
boolexpr,
clock,
containers,
directory,
extra,
filepath,
fused-effects,
fused-effects-lens,
lens,
linear,
megaparsec,
mtl,
nonempty-containers,
prettyprinter,
random,
servant-docs,
text,
time,
transformers,
unordered-containers,
witch,
yaml,
visibility: public
-- cabal-gild: discover src/swarm-engine
exposed-modules:
Swarm.Effect
Swarm.Effect.Time
Swarm.Game.Achievement.Attainment
Swarm.Game.Achievement.Description
Swarm.Game.Achievement.Persistence
Swarm.Game.CESK
Swarm.Game.Exception
Swarm.Game.Robot.Activity
Swarm.Game.Robot.Concrete
Swarm.Game.Scenario.Objective.WinCheck
Swarm.Game.Scenario.Scoring.Best
Swarm.Game.Scenario.Scoring.CodeSize
Swarm.Game.Scenario.Scoring.ConcreteMetrics
Swarm.Game.Scenario.Scoring.GenericMetrics
Swarm.Game.Scenario.Status
Swarm.Game.Scenario.Topography.Navigation.Util
Swarm.Game.ScenarioInfo
Swarm.Game.State
Swarm.Game.State.Initialize
Swarm.Game.State.Robot
Swarm.Game.State.Runtime
Swarm.Game.State.Substate
Swarm.Game.Step
Swarm.Game.Step.Arithmetic
Swarm.Game.Step.Combustion
Swarm.Game.Step.Const
Swarm.Game.Step.Flood
Swarm.Game.Step.Path.Cache
Swarm.Game.Step.Path.Cache.DistanceLimit
Swarm.Game.Step.Path.Finding
Swarm.Game.Step.Path.Type
Swarm.Game.Step.Path.Walkability
Swarm.Game.Step.RobotStepState
Swarm.Game.Step.Util
Swarm.Game.Step.Util.Command
Swarm.Game.Step.Util.Inspect
Swarm.Game.Step.Validate
Swarm.Game.Tick
Swarm.Game.Value
Swarm.Log
other-modules: Paths_swarm
autogen-modules: Paths_swarm
build-depends:
swarm:swarm-lang,
swarm:swarm-scenario,
swarm:swarm-topography,
swarm:swarm-util,
hs-source-dirs: src/swarm-engine
ghc-options:
-hiedir=.hie/src/swarm-engine
default-language: Haskell2010
default-extensions:
-- Avoid unexpected unevaluated thunk buildup
-- See discussion in #415
StrictData
library swarm-web
import:
stan-config, common, ghc2021-extensions,
aeson,
base,
bytestring,
colour,
commonmark,
containers,
http-types,
lens,
nonempty-containers,
palette,
servant,
servant-docs,
servant-server,
text,
wai,
wai-app-static,
warp,
witch,
visibility: public
-- cabal-gild: discover src/swarm-web
exposed-modules:
Swarm.Web
Swarm.Web.Worldview
other-modules: Paths_swarm
autogen-modules: Paths_swarm
build-depends:
swarm:swarm-engine,
swarm:swarm-lang,
swarm:swarm-scenario,
swarm:swarm-topography,
swarm:swarm-tui,
swarm:swarm-util,
hs-source-dirs: src/swarm-web
ghc-options:
-hiedir=.hie/src/swarm-web
default-language: Haskell2010
default-extensions:
-- Avoid unexpected unevaluated thunk buildup
-- See discussion in #415
StrictData
library swarm-tournament
import:
stan-config, common, ghc2021-extensions,
SHA,
aeson,
base,
bytestring,
commonmark,
containers,
cookie,
exceptions,
extra,
fused-effects,
http-client,
http-client-tls,
http-types,
lens,
mtl,
JuicyPixels,
servant-JuicyPixels,
servant-docs,
servant-multipart,
servant-server,
sqlite-simple,
text,
time,
transformers,
utf8-string,
wai,
wai-app-static,
wai-extra,
warp,
yaml,
visibility: public
-- cabal-gild: discover src/swarm-tournament
exposed-modules:
Swarm.Web.Auth
Swarm.Web.Tournament
Swarm.Web.Tournament.Database.Query
Swarm.Web.Tournament.Type
Swarm.Web.Tournament.Validate
Swarm.Web.Tournament.Validate.FailureMode
Swarm.Web.Tournament.Validate.Upload
other-modules: Paths_swarm
autogen-modules: Paths_swarm
build-depends:
swarm:swarm-engine,
swarm:swarm-lang,
swarm:swarm-scenario,
swarm:swarm-util,
hs-source-dirs: src/swarm-tournament
ghc-options:
-hiedir=.hie/src/swarm-tournament
default-language: Haskell2010
library swarm-util
import:
stan-config, common, ghc2021-extensions,
aeson,
array,
base,
boolexpr,
clock,
containers,
data-fix,
directory,
either,
extra,
filepath,
free,
fused-effects,
hashable,
lens,
megaparsec,
minimorph,
mtl,
prettyprinter,
servant-docs,
template-haskell,
text,
transformers,
vector,
witch,
witherable,
yaml,
visibility: public
-- cabal-gild: discover src/swarm-util
exposed-modules:
Control.Carrier.Accum.FixedStrict
Data.BoolExpr.Simplify
Swarm.Failure
Swarm.Language.Syntax.Direction
Swarm.Pretty
Swarm.ResourceLoading
Swarm.Util
Swarm.Util.Effect
Swarm.Util.Erasable
Swarm.Util.Graph
Swarm.Util.JSON
Swarm.Util.Lens
Swarm.Util.OccurrenceEncoder
Swarm.Util.RingBuffer
Swarm.Util.UnitInterval
Swarm.Util.WindowedCounter
Swarm.Util.Yaml
other-modules: Paths_swarm
autogen-modules: Paths_swarm
hs-source-dirs: src/swarm-util
ghc-options:
-hiedir=.hie/src/swarm-util
default-language: Haskell2010
default-extensions:
-- Avoid unexpected unevaluated thunk buildup
-- See discussion in #415
StrictData
library swarm-doc
import:
stan-config, common, ghc2021-extensions,
aeson,
base,
containers,
directory,
dotgen,
extra,
filepath,
fused-effects,
lens,
mtl,
pandoc,
pandoc-types,
scientific,
servant-docs,
text,
transformers,
vector,
visibility: public
-- cabal-gild: discover src/swarm-doc
exposed-modules:
Swarm.Doc.Command
Swarm.Doc.Gen
Swarm.Doc.Keyword
Swarm.Doc.Pedagogy
Swarm.Doc.Schema.Arrangement
Swarm.Doc.Schema.Parse
Swarm.Doc.Schema.Refined
Swarm.Doc.Schema.Render
Swarm.Doc.Schema.SchemaType
Swarm.Doc.Util
Swarm.Doc.Wiki.Cheatsheet
Swarm.Doc.Wiki.Matrix
Swarm.Doc.Wiki.Util
build-depends:
swarm:swarm-engine,
swarm:swarm-lang,
swarm:swarm-scenario,
swarm:swarm-util,
hs-source-dirs: src/swarm-doc
ghc-options:
-hiedir=.hie/src/swarm-doc
default-language: Haskell2010
default-extensions:
-- Avoid unexpected unevaluated thunk buildup
-- See discussion in #415
StrictData
library swarm-tui
import:
stan-config, common, ghc2021-extensions,
aeson,
array,
base,
brick,
brick-list-skip,
brick-tabular-list,
bytestring,
clock,
prettyprinter,
colour,
containers,
extra,
filepath,
fused-effects,
fuzzy,
generic-data,
githash,
lens,
linear,
mtl,
murmur3,
natural-sort,