-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathquoridor-hs.cabal
84 lines (77 loc) · 2.88 KB
/
quoridor-hs.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
name: quoridor-hs
version: 0.1.1.2
synopsis: A Quoridor implementation in Haskell
homepage: https://github.com/talw/quoridor-hs
license: BSD3
license-file: LICENSE
author: Tal Walter <[email protected]>
maintainer: Tal Walter <[email protected]>
category: Game
build-type: Simple
cabal-version: >=1.18
description:
An implementation in Haskell of the 2-to-4-player strategy game.
For more information, see:
<https://github.com/talw/quoridor-hs>
data-dir: resources
data-files: console.html
console.js
style.css
library
hs-source-dirs: src
exposed-modules: Quoridor
Quoridor.Cmdline
other-modules: Quoridor.Cmdline.Parse
Quoridor.Cmdline.Render
Quoridor.Cmdline.Options
Quoridor.Cmdline.Messages
Quoridor.Cmdline.Network.Server
Quoridor.Cmdline.Network.Client
Quoridor.Cmdline.Network.Common
Quoridor.Helpers
Paths_quoridor_hs
-- other-extensions:
build-depends: base >=4.7 && <4.9,
containers >=0.5 && <0.6,
mtl >=2.1 && <2.3,
parsec ==3.1.*,
dlist ==0.7.1.*,
network-simple ==0.4.*,
hex ==0.1.*,
bytestring ==0.10.*,
exceptions ==0.6.*,
ansi-terminal ==0.6.*,
process ==1.2.*,
websockets-snap ==0.9.*,
websockets ==0.9.*,
snap-core ==0.9.*,
snap-server ==0.9.*,
filepath ==1.3.*,
directory ==1.2.*,
network >=2.5 && <2.7,
async ==2.0.*,
stm ==2.4.*
-- hs-source-dirs:
default-language: Haskell2010
GHC-Options: -Wall
executable quoridor-exec
hs-source-dirs: quoridor-exec
main-is: Main.hs
build-depends: base >=4.7 && <4.9,
quoridor-hs ==0.1.1.2
default-language: Haskell2010
GHC-Options: -Wall
-threaded
test-suite quoridor-tests
hs-source-dirs: tests
main-is: Tests.hs
build-depends: base >=4.7 && <4.9,
HUnit ==1.2.*,
quoridor-hs ==0.1.1.2,
mtl >=2.1 && <2.3
default-language: Haskell2010
type: exitcode-stdio-1.0
GHC-Options: -Wall
Source-repository head
Type: git
Location: https://github.com/talw/quoridor-hs