-
Notifications
You must be signed in to change notification settings - Fork 1
/
bresson.cabal
162 lines (144 loc) · 5.43 KB
/
bresson.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
Name: bresson
Version: 0.0.0
Synopsis: BSON parser and encoder
Description: BSON parser and encoder
License: MIT
License-file: LICENSE
Copyright: Fedor Gogolev <[email protected]>
Author: Fedor Gogolev <[email protected]>
Sergei Lebedev <[email protected]>
Maintainer: Fedor Gogolev <[email protected]>
Homepage: https://github.com/lambda-llama/bresson
Bug-reports: https://github.com/lambda-llama/bresson/issues
Category: Data
Stability: Alpha
Build-type: Simple
Cabal-version: >= 1.12
Tested-with: GHC == 7.6.*
Extra-Source-Files: include/*.h
Flag devtools
Description: Compile with devtools, that means with benchmark against bson and bsonparse utility
Default: False
Library
Hs-source-dirs: src, tests
Include-dirs: include
Ghc-options: -Wall -fno-warn-orphans
Default-language: Haskell2010
Build-depends:
base == 4.7.* || == 4.6.* || == 4.5.*
, bytestring == 0.10.* || == 0.9.*
, time == 1.4.*
, deepseq == 1.3.*
, binary == 0.7.*
, data-binary-ieee754 == 0.4.*
, hashable == 1.2.*
, word24 == 1.0.*
, text == 1.1.*
, vector == 0.10.*
, unordered-containers == 0.2.*
, bitset == 1.4.*
, uuid == 1.3.*
Exposed-modules:
Data.Bson
Data.Bson.Binary
if flag(devtools)
Exposed-modules: Data.Bson.Tests.Instances
Build-depends: QuickCheck == 2.*
Other-modules:
Data.Bson.Class
Data.Bson.Document
Data.Bson.Instances
Data.Bson.Parser
Data.Bson.Types
Data.Bson.Utils
Executable bsonparse
Main-is: BsonParse.hs
Hs-source-dirs: bin
Ghc-options: -Wall -fno-warn-orphans
Default-language: Haskell2010
if !flag(devtools)
Buildable: False
Build-depends:
base == 4.7.* || == 4.6.* || == 4.5.*
, bytestring == 0.10.* || == 0.9.*
, time == 1.4.*
, binary == 0.7.*
, word24 == 1.0.*
, text == 1.1.*
, vector == 0.10.*
, unordered-containers == 0.2.*
, bitset == 1.4.*
, uuid == 1.3.*
, bresson
, deepseq == 1.3.*
, optparse-applicative == 0.7.*
Test-suite bresson-tests
Main-is: Tests.hs
Hs-source-dirs: tests
Default-language: Haskell2010
Type: exitcode-stdio-1.0
Build-depends:
base == 4.7.* || == 4.6.* || == 4.5.*
, bytestring == 0.10.* || == 0.9.*
, time == 1.4.*
, binary == 0.7.*
, word24 == 1.0.*
, text == 1.1.*
, vector == 0.10.*
, unordered-containers == 0.2.*
, bitset == 1.4.*
, uuid == 1.3.*
, bresson
, tasty == 0.8.*
, tasty-quickcheck == 0.8.*
, QuickCheck == 2.6.*
Benchmark bresson-benchmarks
Main-is: Benchmarks.hs
Hs-source-dirs: tests, benchmarks
Ghc-options: -Wall -fno-warn-orphans
Default-language: Haskell2010
Type: exitcode-stdio-1.0
Build-depends:
base == 4.7.* || == 4.6.* || == 4.5.*
, bytestring == 0.10.* || == 0.9.*
, time == 1.4.*
, deepseq == 1.3.*
, binary == 0.7.*
, word24 == 1.0.*
, text == 1.1.*
, vector == 0.10.*
, unordered-containers == 0.2.*
, bitset == 1.4.*
, uuid == 1.3.*
, bresson
, criterion == 0.8.*
, QuickCheck == 2.6.*
, random == 1.0.*
Benchmark bresson-benchmark-against-bson
Main-is: AgainstBson.hs
Hs-source-dirs: tests, benchmarks
Ghc-options: -Wall -fno-warn-orphans
Default-language: Haskell2010
Type: exitcode-stdio-1.0
if !flag(devtools)
Buildable: False
Build-depends:
base == 4.7.* || == 4.6.* || == 4.5.*
, bytestring == 0.10.* || == 0.9.*
, time == 1.4.*
, deepseq == 1.3.*
, binary == 0.7.*
, word24 == 1.0.*
, text == 1.1.*
, vector == 0.10.*
, unordered-containers == 0.2.*
, bitset == 1.4.*
, uuid == 1.3.*
, bresson
, bson == 0.2.4
, criterion == 0.8.*
, deepseq-generics == 0.1.*
, filepath == 1.3.*
Source-repository head
Type: git
Location: https://github.com/lambda-llama/bresson