-
Notifications
You must be signed in to change notification settings - Fork 199
Expand file tree
/
Copy pathcodeworld-collab-server.cabal
More file actions
73 lines (70 loc) · 2.58 KB
/
codeworld-collab-server.cabal
File metadata and controls
73 lines (70 loc) · 2.58 KB
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
Name: codeworld-game-server
Version: 0.1
Synopsis: A simple and hopefully fast message broker
License: Apache-2.0
License-file: LICENSE
Author: The CodeWorld Authors
Maintainer: Joachim Breitner <mail@joachim-breitner.de>
Copyright: (c) 2017, The CodeWorld Authors
Build-type: Simple
Extra-source-files: ChangeLog.md
Cabal-version: >=1.10
Executable codeworld-collab-server
Main-is: Main.hs
Other-modules: CodeWorld.GameServer
Build-depends: base >=4.8 && <4.10,
aeson,
directory,
engine-io,
engine-io-snap,
filepath,
hashable,
http-conduit,
mtl,
ot,
text,
websockets == 0.9.*,
websockets-snap == 0.10.*,
snap-core == 1.0.*,
snap-cors,
snap-server == 1.0.*,
socket-io,
stm,
transformers,
bytestring,
random,
unordered-containers,
time,
codeworld-game-api,
codeworld-server
Hs-source-dirs: src
Default-language: Haskell2010
Ghc-options: -threaded -rtsopts "-with-rtsopts=-N"
Executable codeworld-game-stresstest
Main-is: Stresstest.hs
Build-depends: base >=4.8 && <4.10,
bytestring,
text,
websockets == 0.9.*,
codeworld-game-api,
async,
clock,
optparse-applicative
Hs-source-dirs: src
Default-language: Haskell2010
Ghc-options: -threaded -rtsopts "-with-rtsopts=-N"
Executable codeworld-game-bot
Main-is: Bot.hs
Build-depends: base >=4.8 && <4.10,
bytestring,
text,
websockets == 0.9.*,
codeworld-game-api,
codeworld-api,
async,
clock,
optparse-applicative,
regex-compat
Hs-source-dirs: src
Default-language: Haskell2010
Ghc-options: -threaded -rtsopts "-with-rtsopts=-N"