This repository was archived by the owner on Apr 4, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcql.cabal
91 lines (82 loc) · 2.91 KB
/
cql.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
name: cql
version: 3.0.7
synopsis: Cassandra CQL binary protocol.
stability: experimental
license: MPL-2.0
license-file: LICENSE.txt
author: Toralf Wittner, Roman S. Borschel
maintainer: Toralf Wittner <[email protected]>
copyright: (C) 2014-2015 Toralf Wittner, Roman S. Borschel
homepage: https://github.com/twittner/cql/
bug-reports: https://github.com/twittner/cql/issues
category: Database
build-type: Simple
cabal-version: >= 1.10
extra-source-files: README.asciidoc
CHANGELOG.txt
AUTHORS.txt
description:
Implementation of Cassandra's CQL Binary Protocol
<https://github.com/apache/cassandra/blob/trunk/doc/native_protocol_v2.spec Version 2>
and
<https://github.com/apache/cassandra/blob/trunk/doc/native_protocol_v3.spec Version 3>.
.
It provides encoding and decoding functionality as well as representations
of the various protocol related types.
.
Thus it can serve as a building block for writing Cassandra drivers, such
as <http://hackage.haskell.org/package/cql-io cql-io>.
source-repository head
type: git
location: [email protected]:twittner/cql.git
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall -O2 -fwarn-tabs -funbox-strict-fields
exposed-modules:
Database.CQL.Protocol
Database.CQL.Protocol.Internal
other-modules:
Database.CQL.Protocol.Class
Database.CQL.Protocol.Codec
Database.CQL.Protocol.Record
Database.CQL.Protocol.Tuple
Database.CQL.Protocol.Tuple.TH
Database.CQL.Protocol.Types
Database.CQL.Protocol.Header
Database.CQL.Protocol.Request
Database.CQL.Protocol.Response
build-depends:
base >= 4.5 && < 5.0
, bytestring >= 0.10 && < 1.0
, cereal >= 0.3 && < 1.0
, Decimal >= 0.3 && < 1.0
, iproute >= 1.3 && < 2.0
, network >= 2.4 && < 3.0
, text >= 0.11 && < 2.0
, template-haskell
, time >= 1.4 && < 2.0
, transformers >= 0.3 && < 0.5
, uuid >= 1.2.6 && < 2.0
, vector >= 0.10 && < 1.0
test-suite cql-tests
type: exitcode-stdio-1.0
default-language: Haskell2010
main-is: Main.hs
hs-source-dirs: test
ghc-options: -threaded -Wall -O2 -fwarn-tabs
other-modules: Tests
build-depends:
base
, bytestring
, cereal
, cql
, Decimal
, iproute
, network
, QuickCheck
, tasty >= 0.8
, tasty-quickcheck >= 0.8
, text
, time
, uuid