-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathopenage-masterserver.cabal
89 lines (83 loc) · 3.26 KB
/
openage-masterserver.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
80
81
82
83
84
85
86
87
88
89
-- openage masterserver cabal config
name: openage-masterserver
version: 0.1.0.0
synopsis: master server for openage
description:
Lobby and matchmaking server for openage.
Imparts public servers to game clients, keeps track of game statistics,
creates signed match results and achievements, performs player rankings.
homepage: http://openage.sft.mx
license: AGPL-3
license-file: legal/AGPLv3
author: Jonas Jelten
maintainer: [email protected]
copyright: 2016, openage team
category: Network, Game
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
ghc-options: -O2 -Wall -fwarn-tabs -fwarn-incomplete-uni-patterns -fwarn-incomplete-record-updates
hs-source-dirs: src
exposed-modules: Masterserver.Protocol
, Masterserver.Config
, Masterserver.Database
, Masterserver.Server
build-depends: base >= 4.7 && < 5
, async >= 2.1
, aeson >= 0.11
, containers >= 0.5
, text
, bytestring >= 0.10
, persistent
, persistent-postgresql >= 2.2
, persistent-template >= 2.1
, transformers >= 0.4
, configurator
, mtl
, stm >= 2.4
, monad-logger >= 0.3
, network >= 2.6
, yaml >= 0.8
default-language: Haskell2010
executable openage-masterserver
ghc-options: -O2 -Wall -threaded -fwarn-tabs -fwarn-incomplete-uni-patterns -fwarn-incomplete-record-updates
hs-source-dirs: src/main/
main-is: Main.hs
build-depends: base >= 4.7
, aeson >= 0.11
, async >= 2.1
, bcrypt
, bytestring >= 0.10
, containers >= 0.5
, network >= 2.6
, persistent
, stm >= 2.4
, text
, openage-masterserver
default-language: Haskell2010
executable openage-masterserver-test
hs-source-dirs: test/
main-is: TestCli.hs
ghc-options: -O2 -Wall -threaded -rtsopts -with-rtsopts=-N -fwarn-tabs -fwarn-incomplete-uni-patterns -fwarn-incomplete-record-updates
build-depends: base
, openage-masterserver
, async >= 2.1
, aeson >= 0.11
, containers >= 0.5
, text
, bytestring >= 0.10
, persistent
, persistent-postgresql >= 2.2
, persistent-template >= 2.1
, transformers >= 0.4
, configurator
, mtl
, keys
, stm >= 2.4
, monad-logger >= 0.3
, network >= 2.6
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/SFTtech/openage-masterserver.git