forked from dgvncsz0f/hzk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hzk.cabal
50 lines (47 loc) · 1.75 KB
/
hzk.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
name: hzk
author: DiegoSouza <[email protected]>
license: BSD3
version: 2.1.0
category: Database
homepage: http://github.com/dgvncsz0f/hzk
synopsis: Haskell client library for Apache Zookeeper
build-type: Simple
maintainer: DiegoSouza <[email protected]>
description: A haskell binding to Apache Zookeeper C library
license-file: LICENSE
cabal-version: >= 1.16
source-repository head
type: git
branch: master
location: git://github.com/dgvncsz0f/hzk.git
library
ghc-options: -rtsopts -W -Wall
build-depends: base (>= 4 && < 5)
, bytestring (>= 0.10 && < 1)
, resource-pool
, time
other-modules: Database.Zookeeper.CApi
, Database.Zookeeper.Types
hs-source-dirs: src
exposed-modules: Database.Zookeeper
, Database.Zookeeper.Pool
extra-libraries: zookeeper_mt
default-language: Haskell2010
-- default-extensions: Safe
test-suite test-zookeeper
type: exitcode-stdio-1.0
main-is: test-zookeeper.hs
ghc-options: -threaded -rtsopts
include-dirs: /usr/include/zookeeper
other-modules: Database.Zookeeper
, Database.Zookeeper.CApi
, Database.Zookeeper.Types
build-depends: base (>= 4 && < 5)
, tasty (>= 0.3 && < 1)
, bytestring (>= 0.10 && < 1)
, tasty-hunit (>= 0.2 && < 1)
, resource-pool
, time
hs-source-dirs: src
extra-libraries: zookeeper_mt
default-language: Haskell2010