-
Notifications
You must be signed in to change notification settings - Fork 0
/
vaultaire-query.cabal
122 lines (107 loc) · 3.61 KB
/
vaultaire-query.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
cabal-version: >= 1.10
name: vaultaire-query
version: 0.6.0.0
synopsis: Query library for Vaultaire
license: BSD3
author: Anchor Engineering <[email protected]>
maintainer: Anchor Engineering <[email protected]>
copyright: © 2013-2014 Anchor Systems, Pty Ltd and Others
category: Other
tested-with: GHC == 7.8.3
stability: experimental
build-type: Custom
flag network-uri
description: Get Network.URI from the network-uri package
default: True
source-repository head
type: git
location: [email protected]:anchor/vaultaire-query.git
library
hs-source-dirs: lib
default-language: Haskell2010
exposed-modules: Vaultaire.Query
other-modules: Vaultaire.Query.Base,
Vaultaire.Query.Connection,
Vaultaire.Query.Combinators
if flag(network-uri)
build-depends: network-uri >= 2.6, network >= 2.6
else
build-depends: network-uri < 2.6, network < 2.6
build-depends: base >=4.7 && <4.8,
containers >=0.5 && <0.6,
mtl >= 2.1,
transformers,
hslogger,
either,
errors,
mmorph,
lens,
pipes,
pipes-safe,
pipes-parse,
text,
zeromq4-haskell >= 0.6.3,
data-binary-ieee754,
vaultaire-common,
vaultaire-control,
marquise >= 3.2.1,
chevalier-common
ghc-options: -O2
-threaded
-Wall
-Wwarn
-fwarn-tabs
-with-rtsopts=-T
ghc-prof-options: -fprof-auto
executable query
hs-source-dirs: src
main-is: Query.hs
default-language: Haskell2010
if flag(network-uri)
build-depends: network-uri >= 2.6, network >= 2.6
else
build-depends: network-uri < 2.6, network < 2.6
build-depends: base >=3 && <5,
mtl >= 2.1,
optparse-applicative,
bytestring,
directory,
filepath,
cassava,
vector,
either,
parsec,
pipes,
pipes-bytestring,
pipes-csv,
pipes-safe,
hslogger,
data-binary-ieee754,
vaultaire-common,
chevalier-common,
marquise >= 3.1.0,
vaultaire-query
ghc-options: -O2
-threaded
-Wall
-Wwarn
-fwarn-tabs
ghc-prof-options: -fprof-auto
test-suite query-tests
hs-source-dirs: tests
main-is: Query.hs
type: exitcode-stdio-1.0
default-language: Haskell2010
build-depends: base >=3 && <5,
containers >=0.5 && <0.6,
mtl >= 2.1,
pipes,
time,
ieee754,
hspec,
QuickCheck,
vaultaire-common,
marquise >= 3.1.0,
vaultaire-query
ghc-options: -threaded
ghc-prof-options: -auto-all