forked from jeremyjh/higher-leveldb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
higher-leveldb.cabal
58 lines (52 loc) · 2 KB
/
higher-leveldb.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
-- Initial higher-leveldb.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: higher-leveldb
version: 0.5.0.1
synopsis: A rich monadic API for working with leveldb databases.
description: A rich monadic API for working with leveldb databases.
homepage: https://github.com/jeremyjh/higher-leveldb
license: BSD3
license-file: LICENSE
author: Jeremy Huffman
maintainer: [email protected]
-- copyright:
category: Database
build-type: Simple
cabal-version: >=1.8
source-repository head
type: git
location: git://github.com/jeremyjh/higher-leveldb.git
library
ghc-options: -Wall
exposed-modules: Database.LevelDB.Higher
-- other-modules:
hs-source-dirs: src
build-depends: base == 4.*
, bytestring >= 0.10 && < 0.11
, cereal >= 0.4 && < 0.6
, data-default >= 0.5.1 && < 0.8
, exceptions >= 0.6.0
, leveldb-haskell >= 0.2 && <= 0.7
, mtl >= 2.0 && < 2.3
, resourcet >= 1.2.0 && <= 1.3
, transformers >= 0.3 && < 0.6
, transformers-base >= 0.4.1 && < 0.5
, unliftio-core >= 0.1 && < 0.2
test-suite spec
ghc-options: -optl-Wl,-rpath,/usr/local/lib
other-modules: Database.LevelDB.HigherSpec
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base == 4.*
, higher-leveldb
, cereal
, hspec >= 1.5
, resourcet
, leveldb-haskell
, bytestring
, process
, transformers-base
, mtl
, transformers
, unliftio