-
Notifications
You must be signed in to change notification settings - Fork 0
/
connections.cabal
52 lines (45 loc) · 1.09 KB
/
connections.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
name: connections
version: 0.1.0.0
stability: Experimental
category: Web
author: Ben Pence
maintainer: [email protected]
build-type: Simple
cabal-version: >= 1.10
data-files:
src/main/resources/words.txt
src/main/resources/static/*.css
src/main/resources/static/*.js
src/main/resources/static/*.html
executable connections-main
hs-source-dirs: src/main/haskell/Main
main-is: Main.hs
build-depends:
base
, connections
, random
, scotty
, text
default-language: Haskell2010
library
hs-source-dirs: src/main/haskell
exposed-modules:
Connections.Game.Create
Connections.Game.Play
Connections.Web.Controller
Connections.Web.Handle
Connections.Web.Route
Connections.Web.Store
Connections.Types
Connections.Util
Paths_connections
build-depends:
base
, aeson
, array
, containers
, random
, scotty
, transformers
, text
default-language: Haskell2010