-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrethinkdb-client-driver.cabal
99 lines (79 loc) · 3.06 KB
/
rethinkdb-client-driver.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
88
89
90
91
92
93
94
95
96
97
98
99
name: rethinkdb-client-driver
version: 0.0.25
license: MIT
license-file: LICENSE
author: Tomas Carnecky
maintainer: [email protected]
category: Database
build-type: Simple
cabal-version: >= 1.10
homepage: https://github.com/wereHamster/rethinkdb-client-driver
bug-reports: https://github.com/wereHamster/rethinkdb-client-driver/issues
synopsis: Client driver for RethinkDB
description:
This is an alternative client driver for RethinkDB. It is not complete
yet, but the basic structure is in place and the driver can make
simple queries.
.
Its main focus is on type safety, which it achieves quite well. It also
uses the new JSON protocol which should give it a speed boost (and make
the driver compatible with GHC 7.8).
.
Note that the driver is neither thread-safe nor reentrant. If you have
a multi-threaded application, I recommend using 'resource-pool'.
source-repository head
type: git
location: git://github.com/wereHamster/rethinkdb-client-driver.git
library
default-language : Haskell2010
hs-source-dirs : src
build-depends : base < 4.15
, aeson
, binary
, bytestring
, containers
, hashable
, mtl
, network
, old-locale
, scientific
, stm
, template-haskell >= 2.11.0.0
, text
, time
, unordered-containers
, vector
exposed-modules : Database.RethinkDB
, Database.RethinkDB.TH
other-modules : Database.RethinkDB.Messages
, Database.RethinkDB.Types
, Database.RethinkDB.Types.Datum
ghc-options : -Wall
test-suite spec
default-language : Haskell2010
hs-source-dirs : test
main-is : Test.hs
type : exitcode-stdio-1.0
build-depends : base < 4.15
, hspec
, smallcheck
, hspec-smallcheck
, rethinkdb-client-driver
, vector
, text
, unordered-containers
, time
benchmark bench
default-language : Haskell2010
hs-source-dirs : benchmark
main-is : Benchmark.hs
type : exitcode-stdio-1.0
build-depends : base < 4.15
, criterion
, rethinkdb-client-driver
, vector
, text
, unordered-containers
, time
ghc-options : -Wall -O2 -threaded -rtsopts -with-rtsopts=-N
ghc-prof-options : "-with-rtsopts=-p -s -h -i0.1 -N"