-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheist-tutorial.cabal
50 lines (46 loc) · 1.74 KB
/
heist-tutorial.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
Name: heist-tutorial
Version: 0.1
Synopsis: Heist tutorial
Description: examples for Heist tutorial
License: BSD3
Author: Kari Pahula
Maintainer: [email protected]
Stability: Experimental
Category: Web
Build-type: Simple
Cabal-version: >=1.2
Flag old-base
default: False
manual: False
Executable tutorial
hs-source-dirs: src
main-is: Tutorial.hs
Build-depends:
bytestring >= 0.9.1 && < 0.11,
heist >= 1.0.1 && < 1.1,
MonadCatchIO-transformers >= 0.2.1 && < 0.4,
mtl >= 2 && < 3,
transformers >= 0.3 && < 0.5,
transformers-compat >= 0.4 && < 0.5,
either >= 4.4.1 && < 4.5,
errors >= 2 && < 2.1,
uuid >= 1.3 && < 1.4,
snap >= 1.0 && < 1.1,
snap-core >= 1.0 && < 1.1,
snap-server >= 1.0 && < 1.1,
snap-loader-static >= 1.0 && < 1.1,
text >= 0.11 && < 1.3,
time >= 1.1 && < 1.6,
xmlhtml >= 0.1 && < 0.3,
containers >= 0.5 && < 0.6,
map-syntax >= 0.2 && < 0.3,
http-types >= 0.9 && < 0.10,
blaze-builder >= 0.4 && < 0.5
if flag(old-base)
build-depends:
base >= 4 && < 4.4,
lens >= 3.7.6 && < 3.8
else
build-depends:
base >= 4.4 && < 5,
lens >= 3.7.6 && < 4.14