-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathhw-kafka-conduit.cabal
84 lines (78 loc) · 2.8 KB
/
hw-kafka-conduit.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
cabal-version: 2.2
name: hw-kafka-conduit
version: 2.7.0
synopsis: Conduit bindings for hw-kafka-client
homepage: https://github.com/haskell-works/hw-kafka-conduit
bug-reports: https://github.com/haskell-works/hw-kafka-conduit/issues
license: MIT
license-file: LICENSE
author: Alexey Raga <[email protected]>
maintainer: Alexey Raga <[email protected]>
category: Database
copyright: Alexey Raga
build-type: Simple
tested-with: GHC == 8.10.2, GHC == 8.8.3, GHC == 8.6.5, GHC == 8.4.4
description: Conduit bindings for hw-kafka-client.
-- extra-source-files:
flag examples
default: False
manual: True
description: Also compile examples
source-repository head
type: git
location: https://github.com/haskell-works/hw-kafka-conduit
executable kafka-conduit-example
main-is: Main.hs
hs-source-dirs: example
default-language: Haskell2010
build-depends: base >=4.6 && < 5
, bifunctors
, bytestring
, conduit
, containers
, resourcet
, hw-kafka-conduit
if flag(examples)
buildable: True
else
buildable: False
library
hs-source-dirs: src
ghc-options: -Wall
exposed-modules: Kafka.Conduit.Combinators
, Kafka.Conduit.Source
, Kafka.Conduit.Sink
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, bifunctors
, bytestring
, containers
, conduit
, conduit-extra
, exceptions
, hw-kafka-client >= 2.5
, mtl
, resourcet
, transformers
test-suite kafka-client-conduit-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: Kafka.Conduit.CombinatorSpec
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
build-depends: base
, hw-kafka-conduit
, bifunctors
, bytestring
, containers
, conduit
, conduit-extra
, extra
, hspec
, hw-kafka-client >= 2.5
, mtl
, resourcet
, transformers
, QuickCheck
build-tool-depends: hspec-discover:hspec-discover