-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathinfluxdb.cabal
175 lines (165 loc) · 3.67 KB
/
influxdb.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
cabal-version: 1.24
name: influxdb
version: 1.9.3.2
synopsis: InfluxDB client library for Haskell
description:
@influxdb@ is an InfluxDB client library for Haskell.
.
See "Database.InfluxDB" for a quick start guide.
homepage: https://github.com/maoe/influxdb-haskell
license: BSD3
license-file: LICENSE
author: Mitsutoshi Aoe
maintainer: Mitsutoshi Aoe <[email protected]>
copyright: Copyright (C) 2014-2024 Mitsutoshi Aoe
category: Database
build-type: Custom
tested-with:
GHC == 8.4.4
GHC == 8.6.5
GHC == 8.8.4
GHC == 8.10.7
GHC == 9.0.2
GHC == 9.2.8
GHC == 9.4.8
GHC == 9.6.6
GHC == 9.8.2
GHC == 9.10.1
extra-source-files:
README.md
cabal.project
extra-doc-files:
CHANGELOG.md
flag examples
description: Build examples
default: False
manual: True
custom-setup
setup-depends:
base >= 4 && < 5
, Cabal >= 1.24 && < 3.13
, cabal-doctest >= 1 && < 1.1
library
exposed-modules:
Database.InfluxDB
Database.InfluxDB.Format
Database.InfluxDB.JSON
Database.InfluxDB.Line
Database.InfluxDB.Manage
Database.InfluxDB.Ping
Database.InfluxDB.Query
Database.InfluxDB.Types
Database.InfluxDB.Write
Database.InfluxDB.Write.UDP
other-modules:
Database.InfluxDB.Internal.Text
other-extensions:
BangPatterns
CPP
DataKinds
DeriveDataTypeable
DeriveGeneric
ExistentialQuantification
FlexibleInstances
FunctionalDependencies
GADTs
GeneralizedNewtypeDeriving
KindSignatures
LambdaCase
MultiParamTypeClasses
NamedFieldPuns
OverloadedStrings
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TemplateHaskell
ViewPatterns
ghc-options: -Wall
build-depends:
base >= 4.11 && < 4.21
, aeson >= 0.7 && < 2.3
, attoparsec < 0.15
, attoparsec-aeson >= 2.1 && < 2.3
, bytestring >= 0.10 && < 0.13
, clock >= 0.7 && < 0.9
, containers >= 0.5 && < 0.8
, foldl < 1.5
, http-client >= 0.5 && < 0.8
, http-types >= 0.8.6 && < 0.13
, lens >= 4.9 && < 5.4
, network >= 2.6 && < 3.3
, optional-args >= 1.0 && < 1.1
, scientific >= 0.3.3 && < 0.4
, tagged >= 0.1 && < 0.9
, text < 2.2
, time >= 1.5 && < 1.15
, unordered-containers < 0.3
, vector >= 0.10 && < 0.14
hs-source-dirs: src
default-language: Haskell2010
test-suite doctests
type: exitcode-stdio-1.0
main-is: doctests.hs
build-depends:
base
, doctest >= 0.11.3 && < 0.23
, influxdb
, template-haskell < 2.23
ghc-options: -Wall -threaded
hs-source-dirs: tests
default-language: Haskell2010
test-suite regressions
type: exitcode-stdio-1.0
main-is: regressions.hs
build-depends:
base
, containers
, influxdb
, lens
, tasty < 1.6
, tasty-hunit < 1.11
, time
, raw-strings-qq >= 1.1 && < 1.2
, vector
ghc-options: -Wall -threaded
hs-source-dirs: tests
default-language: Haskell2010
executable influx-random-points
if !flag(examples)
buildable: False
hs-source-dirs: examples
main-is: random-points.hs
ghc-options: -Wall
build-depends:
aeson
, base
, bytestring
, containers
, foldl >= 1.1.3
, http-client
, influxdb
, lens
, mwc-random
, optional-args
, text
, time
, vector
default-language: Haskell2010
executable influx-write-udp
if !flag(examples)
buildable: False
hs-source-dirs: examples
main-is: write-udp.hs
ghc-options: -Wall
build-depends:
base
, containers
, influxdb
, lens
, network
, time
default-language: Haskell2010
source-repository head
type: git
branch: develop
location: https://github.com/maoe/influxdb-haskell.git