-
Notifications
You must be signed in to change notification settings - Fork 22
/
milena.cabal
82 lines (78 loc) · 2.53 KB
/
milena.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
-- This file has been generated from package.yaml by hpack version 0.28.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 2faa8f37a431f4f1c343faf88d70eb0df20eeab4ec60b3f88a2c3cfc6fee68ca
name: milena
version: 0.5.2.1
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
stability: alpha
homepage: https://github.com/adamflott/milena.git#readme
bug-reports: https://github.com/adamflott/milena.git/issues
author: Tyler Holien
maintainer: [email protected]
copyright: 2014, Tyler Holien
license: BSD3
license-file: LICENSE
tested-with: GHC==7.10.3 GHC==8.0.1
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: https://github.com/adamflott/milena.git
library
default-extensions: ConstraintKinds DeriveGeneric FlexibleContexts GADTs GeneralizedNewtypeDeriving OverloadedStrings Rank2Types TemplateHaskell
ghc-options: -Wall -fwarn-unused-imports -Wincomplete-uni-patterns -Wincomplete-record-updates
build-depends:
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
exposed-modules:
Network.Kafka
Network.Kafka.Consumer
Network.Kafka.Protocol
Network.Kafka.Producer
other-modules:
Paths_milena
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
main-is: tests.hs
other-modules:
Paths_milena
hs-source-dirs:
test
default-extensions: ConstraintKinds DeriveGeneric FlexibleContexts GADTs GeneralizedNewtypeDeriving OverloadedStrings Rank2Types TemplateHaskell
ghc-options: -Wall -fwarn-unused-imports -Wincomplete-uni-patterns -Wincomplete-record-updates -threaded -rtsopts
build-depends:
QuickCheck
, base
, bytestring
, lens
, milena
, mtl
, network
, semigroups
, tasty
, tasty-hspec
, tasty-quickcheck
default-language: Haskell2010