-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbroker.cabal
69 lines (66 loc) · 1.52 KB
/
broker.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
name: broker
version: 0.1.0.0
-- synopsis:
-- description:
-- license:
license-file: LICENSE
author: Marc Juchli
maintainer: [email protected]
-- copyright:
category: Data
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
hs-source-dirs: src
build-depends:
base >= 4.6 && <= 5.0,
bytestring >= 0.10 && < 0.11,
binary >=0.6 && <0.8,
network >= 2.4,
directory >= 1.2,
cond >= 0.4,
digest >= 0.0.1.2,
kafka-protocol -any,
mtl -any,
mmap -any,
async -any,
resourcet -any
executable broker
main-is: HMB/Main.hs
-- other-modules:
-- other-extensions:
build-depends:
base >=4.6 && <5.0,
binary >=0.6 && <0.8,
bytestring >=0.10 && <0.11,
network >= 2.6,
async -any,
cond >= 0.4,
directory >= 1.2,
digest >= 0.0.1.2,
kafka-protocol -any,
mtl -any,
mmap -any,
cereal -any,
resourcet -any,
containers -any,
network-info -any
hs-source-dirs: src
default-language: Haskell2010
executable performance-producer
main-is: producer/Main.hs
build-depends:
base >=4.6 && <5.0,
bytestring >=0.10 && <0.11,
network >= 2.6,
kafka-protocol -any,
broker -any,
iproute >= 1.3,
cereal -any,
entropy -any
ghc-options:
-threaded
ghc-prof-options: -O2
hs-source-dirs: benchmark
default-language: Haskell2010