-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathj2s.cabal
72 lines (69 loc) · 2.16 KB
/
j2s.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
name: j2s
version: 0.2.1
synopsis: A core library for boardgame design
homepage: https://github.com/berewt/j2s
license: MIT
license-file: LICENSE
author: Nicolas Biri
maintainer: [email protected]
category: Game
build-type: Simple
stability: experimental
cabal-version: >=1.18
source-repository head
type: git
location: [email protected]:berewt/J2S.git
-- configuration for building a library
library
default-language: Haskell2010
hs-source-dirs: src
exposed-modules:
Data.NLTree
J2S
other-modules:
J2S.AI
J2S.Engine
J2S.AI.Types
J2S.AI.MaxN
J2S.AI.MinMax
J2S.AI.Random
ghc-options: -Wall
build-depends:
base >= 4.8 && < 5
, containers >= 0.5 && < 0.8
, either >= 4.3 && < 5.1
, free >= 4.10 && < 5.2
, QuickCheck >= 2.7 && < 2.13
, lens >= 4.8 && < 4.18
, monad-loops >= 0.4 && < 0.5
, MonadRandom >= 0.3 && < 0.6
, mtl >= 2.2 && < 2.3
, nats >= 1 && < 2
, random >= 1.1 && < 1.2
, recursion-schemes >= 4.1 && < 5.2
, semigroups >= 0.16 && < 0.19
, text >= 1.2 && < 1.3
, transformers >= 0.4 && < 0.6
, zippers >= 0.2 && < 0.3
-- doctests
test-suite test
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
J2S.AI.RandomTest
J2S.AITest
J2S.Game.Mock
hs-source-dirs: test
build-depends:
j2s
, base >= 4.8 && < 5
, QuickCheck >= 2.7 && < 2.13
, MonadRandom >= 0.3 && < 0.6
, mtl >= 2.2 && < 2.3
, nats >= 1 && < 2
, random >= 1.1 && < 1.2
, semigroups >= 0.16 && < 0.19
, test-framework >= 0.8 && < 0.9
, test-framework-quickcheck2 >= 0.3 && < 0.4
, transformers >= 0.4 && < 0.6