-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhearts.cabal
More file actions
72 lines (68 loc) · 1.51 KB
/
hearts.cabal
File metadata and controls
72 lines (68 loc) · 1.51 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
cabal-version: 2.4
name: hearts
version: 1.0.3-wip
synopsis: An implementation of the card game Hearts
license: GPL-3.0-or-later
author: Emily Bourke
copyright: Emily Bourke
maintainer: undergroundquizscene@protonmail.com
extra-source-files:
README.md
ChangeLog.md
data-files:
static/hearts.css
library
exposed-modules:
Hearts.Game
Hearts.Server
other-modules:
Hearts.API
Hearts.Card
Hearts.Game.Event
Hearts.Game.ID
Hearts.Player
Hearts.Player.Event
Hearts.Player.Id
Hearts.Room
Paths_hearts
hs-source-dirs:
src
build-depends:
aeson,
base,
bytestring,
containers,
generic-lens,
http-api-data,
lens,
lucid,
random-shuffle,
servant,
servant-lucid,
servant-server,
text,
transformers,
vector,
wai-extra,
warp,
default-language: Haskell2010
ghc-options: -Wall -Werror
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wmissing-local-signatures
-Wredundant-constraints
-Wunused-packages
executable hearts-exe
main-is: Main.hs
other-modules:
Paths_hearts
hs-source-dirs:
app
ghc-options: -Wall -Werror
-threaded -rtsopts -with-rtsopts=-N
build-depends:
hearts,
base,
filepath,
optparse-applicative,
default-language: Haskell2010