-
Notifications
You must be signed in to change notification settings - Fork 0
/
codenames.cabal
62 lines (57 loc) · 1.78 KB
/
codenames.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
name: codenames
version: 0.1.0.0
homepage: https://github.com/querqueq/codenames#README.md
license: BSD3
license-file: LICENSE
author: querqueq
copyright: 2017 querqueq
category: Web
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
executable client
main-is: Main.hs
if !impl(ghcjs)
buildable: False
else
ghcjs-options: -dedupe
hs-source-dirs: client, lib
build-depends: base >= 4.7 && < 5
, miso
, stm
, binary
, mtl
, servant
, aeson
, bytestring
, text
, containers
, transformers
default-language: Haskell2010
executable server
main-is: Main.hs
if impl(ghcjs)
buildable: False
else
--ghc-options: -O2 -threaded -Wall -rtsopts
hs-source-dirs: server, lib
build-depends: base >= 4.7 && < 5
, stm
, binary
, MonadRandom
, random-shuffle
, mtl
, servant
, servant-server
, aeson
, bytestring
, text
, warp
, wai
, wai-extra
, wai-logger
, containers
, transformers
, hsparql
, ulid
default-language: Haskell2010