-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathlmdb-simple.cabal
87 lines (71 loc) · 2.71 KB
/
lmdb-simple.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
85
86
87
name: lmdb-simple
version: 0.4.0.0
synopsis: Simple API for LMDB
description: This package provides a simple API for using the
Lightning Memory-mapped Database (LMDB).
homepage: https://github.com/verement/lmdb-simple#readme
bug-reports: https://github.com/verement/lmdb-simple/issues
license: BSD3
license-file: LICENSE
author: Rob Leslie
maintainer: [email protected]
copyright: © 2017–2018 Robert Leslie
stability: experimental
category: Database
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
stack.yaml
test/env/.keep
source-repository head
type: git
location: https://github.com/verement/lmdb-simple.git
library
hs-source-dirs: src
exposed-modules: Database.LMDB.Simple
Database.LMDB.Simple.DBRef
Database.LMDB.Simple.Extra
Database.LMDB.Simple.View
other-modules: Database.LMDB.Simple.Internal
build-depends: base >= 4.7 && < 5
, bytestring >= 0.10 && < 0.11
, lmdb >= 0.2 && < 0.3
, serialise >= 0.2 && < 0.3
ghc-options: -Wall -Wno-name-shadowing -Wno-unused-do-bind
default-language: Haskell2010
default-extensions: Trustworthy
other-extensions: ConstraintKinds
TypeFamilies
test-suite sample
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: sample.hs
build-depends: base
, lmdb-simple
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
test-suite hspec
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: hspec.hs
other-modules: Database.LMDB.SimpleSpec
Database.LMDB.Simple.DBRefSpec
Harness
build-depends: base
, hspec
, lmdb-simple
, QuickCheck
ghc-options: -Wall -Wno-unused-do-bind
-threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
benchmark criterion
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: criterion.hs
other-modules: Harness
build-depends: base
, criterion
, lmdb-simple
ghc-options: -Wall -Wno-name-shadowing
-threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010