-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathnakadi-client.cabal
231 lines (225 loc) · 6.6 KB
/
nakadi-client.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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.31.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 3ec0566f946f77d1552db269b4d78bac3832e35fbb1e0e46003d5410086516d9
name: nakadi-client
version: 0.7.0.0
synopsis: Client library for the Nakadi Event Broker
description: This package implements a client library for interacting with the Nakadi event broker system developed by Zalando.
category: Network
homepage: http://nakadi-client.haskell.silverratio.net
bug-reports: https://github.com/mtesseract/nakadi-haskell/issues
author: Moritz Clasmeier
maintainer: [email protected]
copyright: (c) 2017, 2018, 2019 Moritz Clasmeier
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
AUTHORS.md
CHANGES.md
.gitignore
source-repository head
type: git
location: https://github.com/mtesseract/nakadi-haskell
flag devel
manual: True
default: False
library
exposed-modules:
Network.Nakadi
Network.Nakadi.Prelude
Network.Nakadi.Base
Network.Nakadi.Config
Network.Nakadi.EventTypes
Network.Nakadi.EventTypes.CursorDistances
Network.Nakadi.EventTypes.CursorsLag
Network.Nakadi.EventTypes.Events
Network.Nakadi.EventTypes.EventType
Network.Nakadi.EventTypes.Partitions
Network.Nakadi.EventTypes.Schemas
Network.Nakadi.EventTypes.ShiftedCursors
Network.Nakadi.Subscriptions
Network.Nakadi.Subscriptions.Cursors
Network.Nakadi.Subscriptions.Events
Network.Nakadi.Subscriptions.Stats
Network.Nakadi.Subscriptions.Subscription
Network.Nakadi.Types
Network.Nakadi.Types.Config
Network.Nakadi.Types.Exceptions
Network.Nakadi.Types.Logger
Network.Nakadi.Types.Problem
Network.Nakadi.Types.Service
Network.Nakadi.Registry
Network.Nakadi.Lenses
Network.Nakadi.Internal.Http
Network.Nakadi.Internal.Retry
Network.Nakadi.HttpBackendIO
Network.Nakadi.Unsafe.IO
other-modules:
Network.Nakadi.Internal.Base
Network.Nakadi.Internal.Committer
Network.Nakadi.Internal.Committer.NoBuffer
Network.Nakadi.Internal.Committer.Shared
Network.Nakadi.Internal.Committer.SmartBuffer
Network.Nakadi.Internal.Committer.TimeBuffer
Network.Nakadi.Internal.Config
Network.Nakadi.Internal.Conversions
Network.Nakadi.Internal.GlobalConfig
Network.Nakadi.Internal.HttpBackendIO
Network.Nakadi.Internal.Json
Network.Nakadi.Internal.Lenses
Network.Nakadi.Internal.Prelude
Network.Nakadi.Internal.TH
Network.Nakadi.Internal.Types
Network.Nakadi.Internal.Types.Base
Network.Nakadi.Internal.Types.Committer
Network.Nakadi.Internal.Types.Config
Network.Nakadi.Internal.Types.Exceptions
Network.Nakadi.Internal.Types.Logger
Network.Nakadi.Internal.Types.Problem
Network.Nakadi.Internal.Types.Service
Network.Nakadi.Internal.Types.Subscriptions
Network.Nakadi.Internal.Types.Util
Network.Nakadi.Internal.Types.Worker
Network.Nakadi.Internal.Unsafe.IO
Network.Nakadi.Internal.Util
Network.Nakadi.Internal.Worker
Network.Nakadi.Types.Subscriptions
Paths_nakadi_client
hs-source-dirs:
src
default-extensions: NoImplicitPrelude OverloadedStrings DuplicateRecordFields
build-depends:
aeson
, aeson-casing
, async >=2.2.1 && <2.3.0
, async-timer >=0.2.0.0 && <0.3
, base >=4.7 && <5
, bytestring
, conduit >=1.3.0 && <1.4.0
, conduit-extra >=1.3.0 && <1.4.0
, containers
, exceptions
, hashable
, http-client
, http-client-tls
, http-conduit >=2.3.0 && <2.4
, http-types
, iso8601-time
, lens
, modern-uri >=0.2.1.0 && <0.4
, monad-control
, monad-logger
, mtl
, resourcet >=1.2.0 && <1.3
, retry
, safe-exceptions >=0.1.7.0 && <0.2
, scientific
, split
, stm
, stm-chans
, template-haskell
, text
, time
, transformers
, transformers-base
, unliftio >=0.2.4.0 && <0.3
, unliftio-core
, unordered-containers
, uuid
, vector
if flag(devel)
ghc-options: -Wall -fno-warn-type-defaults -Werror
else
ghc-options: -Wall -fno-warn-type-defaults
default-language: Haskell2010
test-suite nakadi-client-test-suite
type: exitcode-stdio-1.0
main-is: Tests.hs
other-modules:
Network.Nakadi.Config.Test
Network.Nakadi.Connection.Test
Network.Nakadi.EventTypes.BusinessEvents.Test
Network.Nakadi.EventTypes.CursorsLag.Test
Network.Nakadi.EventTypes.ShiftedCursors.Test
Network.Nakadi.EventTypes.Test
Network.Nakadi.Examples.ListEventTypes.Test
Network.Nakadi.Examples.Subscription.Process
Network.Nakadi.Examples.Subscription.Test
Network.Nakadi.Examples.Test
Network.Nakadi.Internal.Http.Test
Network.Nakadi.Internal.Retry.Test
Network.Nakadi.Internal.Test
Network.Nakadi.Internal.Types.Problem.Test
Network.Nakadi.Internal.Types.Test
Network.Nakadi.MonadicAPI.Test
Network.Nakadi.Registry.Test
Network.Nakadi.Subscriptions.Processing.Test
Network.Nakadi.Subscriptions.Stats.Test
Network.Nakadi.Subscriptions.Test
Network.Nakadi.Tests.Common
Paths_nakadi_client
hs-source-dirs:
tests
default-extensions: NoImplicitPrelude OverloadedStrings DuplicateRecordFields
ghc-options: -Wall -fno-warn-type-defaults
build-depends:
aeson
, aeson-casing
, aeson-qq >=0.8.2 && <0.9
, async
, async-timer >=0.2.0.0 && <0.3
, base >=4.7 && <5
, bytestring
, classy-prelude >=1.4.0 && <1.5.0
, conduit >=1.3.0 && <1.4.0
, conduit-extra >=1.3.0 && <1.4.0
, containers
, exceptions
, fast-logger
, hashable
, http-client
, http-client-tls
, http-conduit
, http-types
, iso8601-time
, lens
, lens-aeson
, modern-uri >=0.2.1.0 && <0.4
, monad-control
, monad-logger
, mtl
, nakadi-client
, random
, resourcet >=1.2.0 && <1.3
, retry
, safe-exceptions >=0.1.7.0 && <0.2
, say
, scientific
, split
, stm
, stm-chans
, stm-conduit >=4.0.0 && <4.1.0
, tasty
, tasty-hunit
, template-haskell
, text
, time
, transformers
, transformers-base
, unliftio
, unliftio-core
, unordered-containers
, uuid
, vector
, wai
, warp
if flag(devel)
ghc-options: -Wall -fno-warn-type-defaults -Werror
else
ghc-options: -Wall -fno-warn-type-defaults
default-language: Haskell2010