-
Notifications
You must be signed in to change notification settings - Fork 2
/
optimised-row-columnar.cabal
238 lines (195 loc) · 4.12 KB
/
optimised-row-columnar.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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
name:
optimised-row-columnar
version:
0.1.0.0
synopsis:
Reader and Writer for the ORC file format.
description:
Native Haskell parser and writer for the ORC file format.
.
Compatible with, but in no way dependent on the
C++ or Java versions.
homepage:
https://github.com/HuwCampbell/orc-haskell
license:
BSD3
license-file:
LICENSE
author:
Huw Campbell
maintainer:
category:
Codec
build-type:
Configure
extra-source-files:
ChangeLog.md
configure
configure.ac
include/config.h.in
cabal-version:
>= 1.10
extra-tmp-files:
autom4te.cache
config.log
config.status
include/config.h
include/snappy-stubs-public.h
library
ghc-options:
-Wall
exposed-modules:
Orc.Logical
Orc.Striped
Orc.Data.Data
Orc.Data.Segmented
Orc.Data.Time
Orc.Exception.Type
Orc.Exception.Raising
Orc.Prelude
Orc.Schema.Types
Orc.Serial.Binary.Base
Orc.Serial.Binary.Logical
Orc.Serial.Binary.Striped
Orc.Serial.Binary.Internal.Bytes
Orc.Serial.Binary.Internal.Compression
Orc.Serial.Binary.Internal.Compression.Snappy
Orc.Serial.Binary.Internal.Floats
Orc.Serial.Binary.Internal.Get
Orc.Serial.Binary.Internal.Integers
Orc.Serial.Binary.Internal.Integers.Native
Orc.Serial.Binary.Internal.OrcNum
Orc.Serial.Binary.Internal.Put
Orc.Serial.Json.Logical
Orc.Serial.Protobuf.Schema
Orc.Serial.Protobuf.Schema.Definitions
Orc.Table.Convert
Orc.Table.Logical
Orc.Table.Striped
Orc.X.Vector.Transpose
Orc.X.Vector
Orc.X.Streaming
build-depends:
base >= 4.11 && < 5
, bytestring
, cereal
, containers
, mtl
, monad-control == 1.0.*
, primitive
, protobuf >= 0.2 && < 0.3
, scientific
, streaming >= 0.1 && < 0.3
, streaming-bytestring >= 0.2 && < 0.3
, text >= 1.0 && < 1.3
, transformers >= 0.4 && < 0.6
, transformers-base
, transformers-either
, vector
, wide-word
, zlib
, zstd
hs-source-dirs:
src
default-language:
Haskell2010
include-dirs:
csrc
-- Snappy
include
includes:
bytes.h
floats.h
integers.h
c-sources:
csrc/bytes.c
csrc/floats.c
csrc/integers.c
-- Snappy
csrc/snappy-c-raw.cc
csrc/snappy-c.cc
csrc/snappy-sinksource.cc
csrc/snappy-stubs-internal.cc
csrc/snappy.cc
cc-options:
-msse4.2
extra-libraries:
stdc++
executable main
main-is:
main.hs
default-language:
Haskell2010
ghc-options:
-Wall -threaded -O2
other-modules:
Paths_optimised_row_columnar
hs-source-dirs:
main
build-depends:
base >= 3 && < 5
, optimised-row-columnar
, filepath >= 1.3 && < 1.5
, mmorph
, mtl
, streaming
, text
, transformers
, transformers-either
, optparse-applicative
benchmark bench
type:
exitcode-stdio-1.0
hs-source-dirs:
benchmarks
default-language:
Haskell2010
main-is:
bench.hs
ghc-options:
-Wall -O2
build-depends:
base
, optimised-row-columnar
, bytestring
, cereal
, criterion
, vector
test-suite test
type:
exitcode-stdio-1.0
default-language:
Haskell2010
main-is:
test.hs
ghc-options:
-Wall -threaded -O2
hs-source-dirs:
test
other-modules:
Test.Orc.Data.Time
Test.Orc.Streams.Bytes
Test.Orc.Streams.Integer
Test.Orc.Type
Test.Orc.Logical
Test.Orc.Memory.Leaks
Test.Orc.Streaming
build-depends:
base >= 3 && < 5
, optimised-row-columnar
, cereal
, containers
, bytestring
, Decimal
, filepath >= 1.3 && < 1.5
, hedgehog
, hedgehog-corpus
, mmorph
, resourcet
, streaming
, streaming-bytestring
, temporary-resourcet
, transformers
, transformers-either
, vector