-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathimj-serve-highscores.cabal
66 lines (61 loc) · 2.43 KB
/
imj-serve-highscores.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
name: imj-serve-highscores
version: 0.1.0.3
Category: WebService
Synopsis: Provides read/write access to Hamazed game high scores.
Description: Provides access to persistent high scores for the Hamazed game.
homepage: https://github.com/OlivierSohn/hamazed/blob/master/imj-serve-highscores/README.md
bug-reports: https://github.com/OlivierSohn/hamazed/issues/
license: BSD3
license-file: LICENSE
author: Olivier Sohn
maintainer: [email protected]
copyright: 2017 - 2018 Olivier Sohn
build-type: Simple
extra-source-files: README.md CHANGELOG.md
cabal-version: >=1.10
Tested-With: GHC == 8.2.2, GHC == 8.4.3
library
hs-source-dirs: src
include-dirs: include
other-modules:
exposed-modules: Imj.Game.HighScores.API
, Imj.Game.HighScores.Client
, Imj.Game.HighScores.Server
, Imj.Game.HighScores.Server.Args
build-depends: base >= 4.9 && < 4.16
, base-compat >=0.9 && < 0.12
, binary == 0.8.*
, bytestring == 0.10.*
, postgresql-simple >=0.5 && < 0.7
, imj-base ==0.1.*
, imj-prelude ==0.1.*
, optparse-applicative >=0.14 && < 0.17
, resource-pool == 0.2.*
, servant >=0.13 && < 0.19
, servant-client >=0.13 && < 0.19
, servant-server >=0.13 && < 0.19
, wai ==3.2.*
, warp >=3.2 && < 3.4
default-language: Haskell2010
executable imj-serve-highscores-exe
-- https://gitlab.haskell.org/ghc/ghc/-/issues/11829
if os(darwin)
ld-options: -Wl,-keep_dwarf_unwind
hs-source-dirs: app
other-modules:
main-is: Main.hs
build-depends: base >= 4.9 && < 4.16
, imj-serve-highscores
default-language: Haskell2010
test-suite imj-serve-highscores-test
type: exitcode-stdio-1.0
hs-source-dirs: test
other-modules:
main-is: Spec.hs
build-depends: base >= 4.9 && < 4.16
, imj-prelude ==0.1.*
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/OlivierSohn/hamazed/
subdir: imj-serve-highscores