-
Notifications
You must be signed in to change notification settings - Fork 0
/
botstrats.cabal
70 lines (65 loc) · 2.63 KB
/
botstrats.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
name: botstrats
version: 0.1.0.0
synopsis: A strategy game that makes you program robots
homepage: https://github.com/shak-mar/botstrats
license-file: LICENSE
author: shak-mar
maintainer: [email protected]
category: Game
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
-- Versions:
-- base >= 4.8 && < 4.9
-- transformers >= 0.4 && < 0.5
-- bytestring >= 0.10 && < 0.11
-- directory >= 1.2 && < 1.3
-- filepath >= 1.4 && < 1.5
-- process >= 1.2 && < 1.3
-- lens >= 4.11 && < 4.12
-- network >= 2.6 && < 2.7
-- mtl >= 2.2 && < 2.3
-- aeson >= 0.9 && < 0.10
-- uuid >= 1.3 && < 1.4
-- random >= 1.1 && < 1.2
-- gloss >= 1.9 && < 1.10
executable botstrats-server
main-is: Main.hs
build-depends: base >= 4.8 && < 4.9,
random >= 1.1 && < 1.2,
bytestring >= 0.10 && < 0.11,
network >= 2.6 && < 2.7,
transformers >= 0.4 && < 0.5,
uuid >= 1.3 && < 1.4,
mtl >= 2.2 && < 2.3
hs-source-dirs: server, common
default-language: Haskell2010
executable botstrats-supervisor
main-is: Main.hs
build-depends: base >= 4.8 && < 4.9,
directory >= 1.2 && < 1.3,
filepath >= 1.4 && < 1.5,
process >= 1.2 && < 1.3,
lens >= 4.11 && < 4.12,
uuid >= 1.3 && < 1.4,
network >= 2.6 && < 2.7,
bytestring >= 0.10 && < 0.11,
mtl >= 2.2 && < 2.3
hs-source-dirs: supervisor, common
default-language: Haskell2010
executable botstrats-visualizer
main-is: Main.hs
build-depends: base >= 4.8 && < 4.9,
network >= 2.6 && < 2.7,
gloss >= 1.9 && < 1.10
hs-source-dirs: visualizer, common
default-language: Haskell2010
executable botstrats-sniffer
main-is: Main.hs
build-depends: base >= 4.8 && < 4.9,
network >= 2.6 && < 2.7,
aeson >= 0.9 && < 0.10,
bytestring >= 0.10 && < 0.11,
transformers >= 0.4 && < 0.5
hs-source-dirs: sniffer, common
default-language: Haskell2010