-
Notifications
You must be signed in to change notification settings - Fork 0
/
armoredbits.cabal
79 lines (75 loc) · 2.72 KB
/
armoredbits.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
name: armoredbits
version: 0.1.0.0
synopsis: Network Game Engine
homepage: http://armoredbits.com
license: Apache-2.0
license-file: LICENSE
author: Brian Jones
maintainer: [email protected]
copyright: 2014-2018 Uncanny Works, LLC
category: Game
build-type: Simple
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: ArmoredBits.Config.Parse
, ArmoredBits.Control.Tasks
, ArmoredBits.Network.Messages
, ArmoredBits.Network.Peer
, ArmoredBits.Network.Server
, ArmoredBits.Types
, ArmoredBits.Util
-- Internal
, ArmoredBits.Network.Internal.Peer
build-depends: apecs
, base >=4.10 && <4.11
, async
, bytestring
, cborg
, clock
, containers
, microlens-platform
, network
, network-simple
, mtl
, optparse-applicative
, serialise
, stm
, tagged
, text
default-language: Haskell2010
ghc-options: -Wall -j -O0 -v0
test-suite armoredbits-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules: ArmoredBits.Network.MessagesSpec
, ArmoredBits.Network.PeerSpec
, ArmoredBits.Network.ServerSpec
build-depends: armoredbits
, base
, clock
, containers
, directory
, hspec
, microlens-platform
, mtl
, stm
default-language: Haskell2010
ghc-options: -Wall -j -O0 -v0
executable armoredbits-server
hs-source-dirs: armoredbits/server
main-is: Main.hs
build-depends: armoredbits
, base >=4.10 && <4.11
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-maxN2 -Wall -j -O0 -v0
executable armoredbits-client
hs-source-dirs: armoredbits/client
main-is: Main.hs
build-depends: armoredbits
, base >=4.10 && <4.11
, network
, network-simple
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-maxN2 -Wall -j -O0 -v0