-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdahoop.cabal
65 lines (60 loc) · 1.52 KB
/
dahoop.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
name: dahoop
version: 0.1.0.0
author: Nick Partridge
maintainer: nkpart@gmail.com
build-type: Simple
cabal-version: >=1.10
library
hs-source-dirs: src
ghc-options: -threaded -rtsopts -O2 -Wall -Werror
extra-libraries: zmq
default-language: Haskell2010
exposed-modules:
Dahoop
Dahoop.Master
Dahoop.Slave
Dahoop.Single
Dahoop.Event
Dahoop.Utils
Dahoop.ZMQ4
Dahoop.ZMQ4.Trans
Dahoop.Internal.Messages
Dahoop.Internal.WorkQueue
build-depends:
base
, async
, bytestring
, cereal
, containers
, mtl
, monad-control
, exceptions >= 0.8.0.2
, hostname
, hslogger
, lens
, random
, semigroups
, stm
, stm-chans
, transformers
, uuid
, zeromq4-haskell
, time
, foldl
, unagi-chan
executable example
main-is: Main.hs
hs-source-dirs: example
build-depends:
base
, dahoop
, bytestring
, random
, cereal
, transformers
, foldl
, mtl
, async
, semigroups
default-language: Haskell2010
ghc-options: -threaded -rtsopts -O2