-
Notifications
You must be signed in to change notification settings - Fork 1
/
pulsar-client-hs.cabal
111 lines (103 loc) · 3.79 KB
/
pulsar-client-hs.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
name: pulsar-client-hs
version: 0.1.0.0
license: BSD2
license-file: LICENSE
synopsis: Apache Pulsar Client
description: Apache Pulsar Client (over C bindings)
homepage: https://github.com/hetchr/pulsar-hs/pulsar-client-hs
author: Hetchr
maintainer: [email protected]
copyright: Hetchr - 2021
category: Protocol
build-type: Simple
cabal-version: 1.18
extra-source-files:
includes/*.h
library
default-language: Haskell2010
build-depends:
base == 4.*
, bindings-DSL >= 1.0.25 && < 1.1
, bytestring >= 0.10.12.0 && < 0.11
, containers >= 0.6.5.1 && < 0.7
, deepseq >= 1.4.4.0 && < 1.5
, mtl >= 2.2.2 && < 3
, resourcet >= 1.2.4.3 && < 1.3
, transformers >= 0.5.6.2 && < 0.6
, unliftio >= 0.2.20 && < 0.3
hs-source-dirs: src
default-extensions:
FlexibleContexts
, ForeignFunctionInterface
exposed-modules:
Pulsar.Client
Pulsar.Client.Unsafe
-- Foreign (Generated)
Pulsar.Client.Internal.Foreign.Authentication
Pulsar.Client.Internal.Foreign.ClientConfiguration
Pulsar.Client.Internal.Foreign.Client
Pulsar.Client.Internal.Foreign.ConsumerConfiguration
Pulsar.Client.Internal.Foreign.Consumer
Pulsar.Client.Internal.Foreign.Message
Pulsar.Client.Internal.Foreign.MessageId
Pulsar.Client.Internal.Foreign.MessageRouter
Pulsar.Client.Internal.Foreign.ProducerConfiguration
Pulsar.Client.Internal.Foreign.Producer
Pulsar.Client.Internal.Foreign.ReaderConfiguration
Pulsar.Client.Internal.Foreign.Reader
Pulsar.Client.Internal.Foreign.Result
Pulsar.Client.Internal.Foreign.StringList
Pulsar.Client.Internal.Foreign.StringMap
-- Wrappers (Ease usage)
Pulsar.Client.Internal.Wrapper.Authentication
Pulsar.Client.Internal.Wrapper.ClientConfiguration
Pulsar.Client.Internal.Wrapper.ConsumerConfiguration
Pulsar.Client.Internal.Wrapper.Consumer
Pulsar.Client.Internal.Wrapper.Message
Pulsar.Client.Internal.Wrapper.MessageId
Pulsar.Client.Internal.Wrapper.MessageRouter
Pulsar.Client.Internal.Wrapper.Pointers
Pulsar.Client.Internal.Wrapper.ProducerConfiguration
Pulsar.Client.Internal.Wrapper.Producer
Pulsar.Client.Internal.Wrapper.ReaderConfiguration
Pulsar.Client.Internal.Wrapper.Reader
Pulsar.Client.Internal.Wrapper.Result
other-modules:
Pulsar.Client.Internal.Wrapper.Utils
Paths_pulsar_client_hs
ghc-options: -Wunused-binds -Wunused-imports -Worphans
include-dirs:
includes
includes:
authentication.h
client_configuration.h
client.h
consumer_configuration.h
consumer.h
message.h
message_id.h
message_router.h
producer_configuration.h
producer.h
reader_configuration.h
reader.h
result.h
string_list.h
string_map.h
extra-libraries: pulsar
-- executable pulsar-client-hs-example-consumer
-- build-depends: base, pulsar-client-hs, bytestring
-- default-language: Haskell2010
-- main-is: Main.hs
-- hs-source-dirs: examples/Consumer
-- executable pulsar-client-hs-example-producer
-- build-depends: base, pulsar-client-hs, bytestring, resourcet, transformers
-- default-language: Haskell2010
-- main-is: Main.hs
-- hs-source-dirs: examples/Producer
-- executable pulsar-client-hs-example-reader
-- build-depends: base, pulsar-client-hs, bytestring
-- default-language: Haskell2010
-- main-is: Main.hs
-- hs-source-dirs: examples/Reader
-- include-dirs: includes