forked from imalsogreg/servant-reflex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservant-reflex.cabal
63 lines (56 loc) · 1.73 KB
/
servant-reflex.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
Name: servant-reflex
Version: 0.3.3
Synopsis: Servant reflex API generator
Description: Servant reflex API generator
License: BSD3
License-file: LICENSE.md
Author: Greg Hale, Doug Beardsley
Maintainer: [email protected]
Stability: Experimental
Category: Web
Build-type: Simple
Cabal-version: >=1.10
Flag Example
description: Enable example
default: False
library
exposed-modules:
Servant.Reflex
Servant.Reflex.Multi
other-modules:
Servant.Common.BaseUrl
Servant.Common.Req
hs-source-dirs: src
build-depends:
base >= 4.8 && < 4.10,
bytestring >= 0.10 && < 0.11,
case-insensitive >= 1.2.0.4 && < 1.3,
containers >= 0.5.6 && < 0.6,
data-default >= 0.5 && < 0.8,
exceptions >= 0.8 && < 0.9,
ghcjs-dom >= 0.2 && < 0.10,
http-api-data >= 0.3.6 && < 0.4,
http-media >= 0.6 && < 0.7,
jsaddle >= 0.8 && < 0.10,
mtl >= 2.2.1 && < 2.3,
network-uri >= 2.6 && < 2.7,
reflex >= 0.5 && < 0.6,
reflex-dom-core == 0.4 && < 0.5,
safe >= 0.3.9 && < 0.4,
servant >= 0.8 && < 0.13,
servant-auth >= 0.2.1 && < 0.3,
string-conversions >= 0.4 && < 0.5,
text >= 1.2 && < 1.3,
transformers >= 0.4 && < 0.6
ghc-options: -Wall -fwarn-tabs -funbox-strict-fields -O2
default-language: Haskell2010
executable example
if flag(Example)
buildable: True
else
buildable: False
build-depends: aeson, reflex, servant-reflex, base, scientific, servant, reflex-dom, text
default-language: Haskell2010
main-is: Example.hs
other-modules: API
hs-source-dirs: exec