-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.cabal
93 lines (89 loc) · 3.78 KB
/
server.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
85
86
87
88
89
90
91
92
93
name: wubble
version: 0.1
license: Apache-2.0
license-file: LICENSE
author: Katie Miller
maintainer: Katie Miller
copyright: Copyright (C) 2014 Katie Miller
category: Web
description: Wubble demo app
homepage: https://github.com/codemiller/wubble
bug-reports: https://github.com/codemiller/wubble/issues
cabal-version: >= 1.10
build-type: Custom
source-repository head
type: git
location: [email protected]:codemiller/wubble.git
library
default-language: Haskell2010
ghc-options: -Wall
other-extensions: OverloadedStrings
build-depends: aeson >=0.7 && <0.9
, base >=4.6 && <5
, blaze-html >= 0.7 && <0.8
, case-insensitive >=0.2 && <1.2.0.4
, clay >= 0.8 && <0.9
, data-default >=0.5.3 && <0.6
, http-types >=0.8.3 && <0.8.6
, lens >=4.0 && <5.0
, mtl >=2.1.2 && < 2.2
, network-conduit >=1.0.3 && <1.2
, postgresql-libpq >=0.8.2 && <0.9
, postgresql-simple >=0.4 && <0.4.3
, random >=1.0.1.1 && <1.2
, random-extras >=0.19 && <0.20
, random-fu >=0.2.5.0 && <0.3
, scotty >=0.7 && <0.10
, temporary >=1.1 && <1.2.0.2
, text >=0.11 && <1.3
, transformers >=0.3 && <0.5
, unix >=2.6 && <2.8
, vector-th-unbox >=0.2 && <0.2.0.2
, wai >=2.1 && <3.1
, wai-middleware-static >=0.5 && <0.7
, wai-extra >=2.0.3 && <3.1
, warp >=2.1 && <3.0.8
hs-source-dirs: src
executable server
default-language: Haskell2010
main-is: Main.hs
ghc-options: -Wall
other-extensions: OverloadedStrings
build-depends: aeson >=0.7 && <0.9
, base >=4.6 && <5
, blaze-html >= 0.7 && <0.8
, case-insensitive >=0.2 && <1.2.0.4
, clay >= 0.8 && <0.9
, data-default >=0.5.3 && <0.6
, http-types >=0.8.3 && <0.8.6
, lens >=4.0 && <5.0
, mtl >=2.1.2 && < 2.2
, network-conduit >=1.0.3 && <1.2
, postgresql-libpq >=0.8.2 && <0.9
, postgresql-simple >=0.4 && <0.4.3
, random >=1.0.1.1 && <1.2
, random-extras >=0.19 && <0.20
, random-fu >=0.2.5.0 && <0.3
, scotty >=0.7 && <0.10
, temporary >=1.1 && <1.2.0.2
, text >=0.11 && <1.3
, transformers >=0.3 && <0.5
, unix >=2.6 && <2.8
, vector-th-unbox >=0.2 && <0.2.0.2
, wai >=2.1 && <3.1
, wai-middleware-static >=0.5 && <0.7
, wai-extra >=2.0.3 && <3.1
, warp >=2.1 && <3.0.8
hs-source-dirs: src
test-suite doctests
type: exitcode-stdio-1.0
main-is: doctests.hs
default-language: Haskell2010
build-depends: base >=4.6 && <4.8
, directory >=1.1 && <=1.3
, doctest >=0.8 && <=0.9.11
, filepath >=1.3 && <1.4
, QuickCheck >=2.0 && <=2.8
ghc-options: -Wall
-threaded
hs-source-dirs: test