-
Notifications
You must be signed in to change notification settings - Fork 0
/
ejdb2-binding.cabal
80 lines (77 loc) · 3.19 KB
/
ejdb2-binding.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
cabal-version: 2.4
name: ejdb2-binding
category: Database
description: Binding to EJDB2 C library, an embedded JSON noSQL database. Package requires libejdb2 to build. Please see the README on GitHub at <https://github.com/cescobaz/ejdb2haskell#readme>
synopsis: Binding to EJDB2 C library, an embedded JSON noSQL database
version: 0.4.0.0
license: MIT
license-file: LICENSE
homepage: https://github.com/cescobaz/ejdb2haskell#readme
bug-reports: https://github.com/cescobaz/ejdb2haskell/issues
copyright: 2020 Francesco Burelli
author: Francesco Burelli
maintainer: [email protected]
extra-source-files: CHANGELOG.md
test/read-only-db
source-repository head
type: git
location: https://github.com/cescobaz/ejdb2haskell
library
exposed-modules: Database.EJDB2
, Database.EJDB2.Meta
, Database.EJDB2.CollectionMeta
, Database.EJDB2.IndexMeta
, Database.EJDB2.Options
, Database.EJDB2.HTTP
, Database.EJDB2.WAL
, Database.EJDB2.KV
other-modules:
Database.EJDB2.Query
, Database.EJDB2.JBL
, Database.EJDB2.FromJBL
, Database.EJDB2.ToJBL
, Database.EJDB2.Bindings.JBLStruct
, Database.EJDB2.Result
, Database.EJDB2.IndexMode
, Database.EJDB2.Bindings.EJDB2
, Database.EJDB2.Bindings.JQL
, Database.EJDB2.Bindings.JBL
, Database.EJDB2.Bindings.Types.EJDB
, Database.EJDB2.Bindings.Types.EJDBExec
, Database.EJDB2.Bindings.Types.EJDBDoc
build-depends: base >=4.12 && <=4.15
, bytestring ^>=0.10.10.0
, aeson ^>=1.4.6.0
, unordered-containers ^>=0.2.10.0
, hashable ^>=1.3.1.0
, mtl ^>=2.2.2
build-tool-depends: hsc2hs:hsc2hs
extra-libraries: ejdb2
pkgconfig-depends: libejdb2
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
test-suite ejdb2haskell-test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules:
Asserts
Plant
GetTests
QueryTests
PutTests
DeleteTests
CollectionTests
IndexTests
OnlineBackupTests
FoldTests
build-depends: base >=4.12 && <=4.15
, tasty ^>=1.2.3
, tasty-hunit ^>=0.10.0.2
, aeson ^>=1.4.6.0
, unordered-containers ^>=0.2.10.0
, vector ^>=0.12.1.2
, directory ^>=1.3.6.0
, ejdb2-binding