-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.cabal
64 lines (59 loc) · 1.45 KB
/
app.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
name: pacemaker
version: 0.1
cabal-version: >=1.10
build-type: Simple
author: me
library
build-depends:
base >= 4,
scotty == 0.9.*,
http-conduit == 2.1.0,
http-types,
conduit,
text,
hedis,
transformers,
aeson,
wai,
wai-extra,
bytestring,
time,
unordered-containers,
http-types,
async,
HTTP,
containers
hs-source-dirs: src
ghc-options: -Wall -rtsopts
default-language: Haskell2010
exposed-modules:
WebServer
Pacemaker
KeyConfig
EventGenerator
Metrics
HistoricalData
WebHookNotifier
Feedback
executable pacemaker
main-is: Main.hs
build-depends:
base
, pacemaker
, hedis
default-language: Haskell2010
ghc-options: -Wall -threaded -rtsopts
hs-source-dirs: exec
test-suite spec
type: exitcode-stdio-1.0
ghc-options: -Wall
hs-source-dirs: test
default-language: Haskell2010
main-is: Spec.hs
build-depends:
base >= 4
, hspec
, pacemaker
, aeson
, QuickCheck
, text