forked from tylerholien/milena
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.yaml
81 lines (73 loc) · 1.72 KB
/
package.yaml
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
70
71
72
73
74
75
76
77
78
79
80
81
name: milena
version: '0.5.2.2'
synopsis: A Kafka client for Haskell.
description: ! 'A Kafka client for Haskell.
The protocol module is stable (the only changes will be to support changes in the
Kafka protocol). The API is functional but subject to change.'
category: Network
author: Tyler Holien
maintainer: [email protected]
copyright: 2014, Tyler Holien
license: BSD3
github: adamflott/milena.git
tested-with: GHC==7.10.3 GHC==8.0.1
stability: alpha
extra-source-files:
- README.md
- CHANGELOG.md
ghc-options:
- -Wall
- -fwarn-unused-imports
- -Wincomplete-uni-patterns
- -Wincomplete-record-updates
default-extensions:
- ConstraintKinds
- DeriveGeneric
- FlexibleContexts
- GADTs
- GeneralizedNewtypeDeriving
- OverloadedStrings
- Rank2Types
- TemplateHaskell
library:
exposed-modules:
- Network.Kafka
- Network.Kafka.Consumer
- Network.Kafka.Protocol
- Network.Kafka.Producer
dependencies:
- base >=4.7 && <5
- bytestring >=0.10 && <0.11
- cereal >=0.4 && <0.6
- containers >=0.5 && <0.6
- digest >=0.0.1.0 && <0.1
- lens >=4.4 && <4.20
- lifted-base >=0.2.3.6 && <0.3
- monad-control >=1.0 && <1.1
- mtl >=2.1 && <2.3
- murmur-hash >=0.1.0.8 && <0.2
- network >=2.4 && <2.8
- random >=1.0 && <1.2
- resource-pool >=0.2.3.2 && <0.3
- semigroups >=0.16.2.2 && <0.19
- transformers >=0.3 && <0.6
- zlib >=0.6.1.2 && <0.7
tests:
test:
main: tests.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
dependencies:
- base
- milena
- mtl
- network
- QuickCheck
- bytestring
- lens
- semigroups
- tasty
- tasty-hspec
- tasty-quickcheck