-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathkdb-haskell.cabal
134 lines (127 loc) · 4.74 KB
/
kdb-haskell.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
name: kdb-haskell
version: 0.1.0
synopsis: Haskell bindings for KDB+.
description: This package implements binding for KDB+ database (kx.com) in Haskell.
Compression is currently not supported.
category: Finance, Database
homepage: https://github.com/jkozlowski/kdb-haskell
bug-reports: https://github.com/jkozlowski/kdb-haskell/issues
license-file: LICENSE
license: MIT
author: Jakub Kozlowski
copyright: 2014 Jakub Kozlowski <[email protected]>
maintainer: [email protected]
build-type: Custom
cabal-version: >= 1.9.2
extra-source-files: LICENCE
README.md
CONTRIBUTING.md
source-repository head
location:
[email protected]:jkozlowski/kdb-haskell.git
type:
git
flag documentation
default:
False
library
exposed-modules:
other-modules: Database.Kdb.Internal.Types.KdbTypes
, Database.Kdb.Internal.Types.DateTimeTypes
, Database.Kdb.Internal.Types.ClientTypes
, Database.Kdb.Internal.IPC
, Database.Kdb.Internal.Client
default-language: Haskell2010
build-depends: base >= 4 && < 5, transformers
, deepseq
, network, io-streams, exceptions, blaze-builder, attoparsec
, cpu
, time
, bytestring
, data-default-class, lens
-- see if possible to get rid of: necessary for the
-- conversions between Word32/Word64 and Float/Double.
, array, vector
-- Necessary to provide instances for testing.
, QuickCheck
hs-source-dirs: src
ghc-options: -Wall
-fwarn-incomplete-patterns
-funbox-strict-fields
test-suite kdb-haskell-tests
hs-source-dirs: src
, tests
main-is: Test.hs
type: exitcode-stdio-1.0
build-depends: base >= 4 && < 5, transformers
, deepseq
, network, io-streams, exceptions, blaze-builder, attoparsec
, cpu
, time
, bytestring
, data-default-class, lens
-- see if possible to get rid of: necessary for the
-- conversions between Word32/Word64 and Float/Double.
, array, vector
-- Testing
, base16-bytestring
, tasty
, tasty-quickcheck
, tasty-hunit
, QuickCheck
, quickcheck-io
, network
, process
, directory
, system-filepath
, resourcet
, transformers
, retry
, Cabal
ghc-options: -Wall
-O0
-fhpc
-hpcdir
.hpc
-funbox-strict-fields
benchmark kdb-haskell-benchmark
type: exitcode-stdio-1.0
hs-source-dirs: src
, tests
, benchmarks
main-is: Benchmark.hs
build-depends: base >= 4 && < 5, transformers
, deepseq
, network, io-streams, exceptions, blaze-builder, attoparsec
, cpu
, time
, bytestring
, data-default-class, lens
-- see if possible to get rid of: necessary for the
-- conversions between Word32/Word64 and Float/Double.
, array, vector
-- Necessary to provide instances for testing.
, QuickCheck
-- Benchmark deps
, network
, criterion
, QuickCheck
-- Testing
, base16-bytestring
, tasty
, tasty-quickcheck
, tasty-hunit
, QuickCheck
, quickcheck-io
, network
, process
, directory
, system-filepath
, resourcet
, transformers
, retry
, Cabal
ghc-options: -Wall
-O2
-funbox-strict-fields
-rtsopts