-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
75 lines (69 loc) · 1.19 KB
/
package.yaml
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
name: sokoban
version: 0.1.0
author: Nick Linker <[email protected]>
maintainer: Nick Linker <[email protected]>
# -ddump-splices to see TH generation
# -ddump-ds to desugar
github: nlinker/sokoban-hs
library:
source-dirs:
- src
exposed-modules:
- Sokoban.Console
- Sokoban.Keys
- Sokoban.Level
- Sokoban.Model
- Sokoban.Parser
- Sokoban.Resources
- Sokoban.Solver
- Debug
- Helper
other-modules:
- Paths_sokoban
executables:
sokoban:
ghc-options: -threaded -Wall -fno-warn-name-shadowing
main: Main.hs
source-dirs:
- exe
dependencies:
- sokoban
tests:
unit:
main: Spec.hs
source-dirs:
- test
dependencies:
- sokoban
- criterion
- hspec
- mwc-random
- QuickCheck
- quickcheck-instances
dependencies:
- ansi-terminal
- async
- base
- bytestring
- Cabal
- deepseq
- extra
- hashable
- ghc-prim
- impure-containers
- lens
- MonadRandom
- mtl
- parallel
- primitive
- qm-interpolated-string
- random
- stm
- STMonadTrans
- template-haskell
- transformers
- text
- text-builder
- unordered-containers
- vector
- word8