-
Notifications
You must be signed in to change notification settings - Fork 113
/
websockets.cabal
247 lines (220 loc) · 7.38 KB
/
websockets.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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
Name: websockets
Version: 0.13.0.0
Synopsis:
A sensible and clean way to write WebSocket-capable servers in Haskell.
Description:
This library allows you to write WebSocket-capable servers.
.
An example server:
<https://github.com/jaspervdj/websockets/blob/master/example/server.lhs>
.
An example client:
<https://github.com/jaspervdj/websockets/blob/master/example/client.hs>
.
This package only supports insecure (@ws:\/\/...@) WebSockets.
If you need secure (@wss:\/\/...@) websockets, consider using Wuss:
<https://hackage.haskell.org/package/wuss>
.
See also:
.
* The specification of the WebSocket protocol:
<http://www.whatwg.org/specs/web-socket-protocol/>
.
* The JavaScript API for dealing with WebSockets:
<http://www.w3.org/TR/websockets/>
License: BSD3
License-file: LICENCE
Copyright: (c) 2010-2011 Siniša Biđin
(c) 2011-2018 Jasper Van der Jeugt
(c) 2011 Steffen Schuldenzucker
(c) 2011 Alex Lang
Author: Siniša Biđin <sinisa@bidin.cc>
Jasper Van der Jeugt <m@jaspervdj.be>
Steffen Schuldenzucker <steffen.schuldenzucker@googlemail.com>
Alex Lang <lang@tsurucapital.com>
Domen Kožar
Maintainer: Jasper Van der Jeugt <m@jaspervdj.be>
Stability: experimental
Category: Network
Build-type: Simple
Cabal-version: >= 1.10
Homepage: http://jaspervdj.be/websockets
Bug-reports: https://github.com/jaspervdj/websockets/issues
Extra-source-files:
CHANGELOG
Source-repository head
Type: git
Location: https://github.com/jaspervdj/websockets
Flag Example
Description: Build the example server
Default: False
Manual: True
Library
Hs-source-dirs: src
Ghc-options: -Wall
C-sources: cbits/cbits.c
Default-language: Haskell2010
Exposed-modules:
Network.WebSockets
Network.WebSockets.Client
Network.WebSockets.Connection
Network.WebSockets.Connection.PingPong
Network.WebSockets.Extensions
Network.WebSockets.Stream
-- Network.WebSockets.Util.PubSub TODO
Other-modules:
Network.WebSockets.Connection.Options
Network.WebSockets.Extensions.Description
Network.WebSockets.Extensions.PermessageDeflate
Network.WebSockets.Extensions.StrictUnicode
Network.WebSockets.Http
Network.WebSockets.Hybi13
Network.WebSockets.Hybi13.Demultiplex
Network.WebSockets.Hybi13.Mask
Network.WebSockets.Protocol
Network.WebSockets.Server
Network.WebSockets.Types
Build-depends:
async >= 2.2 && < 2.3,
attoparsec >= 0.10 && < 0.15,
base >= 4.14 && < 5,
base64-bytestring >= 0.1 && < 1.3,
binary >= 0.8.1 && < 0.11,
bytestring >= 0.9 && < 0.13,
case-insensitive >= 0.3 && < 1.3,
containers >= 0.3 && < 0.8,
network >= 2.3 && < 3.3,
random >= 1.0.1 && < 1.3,
SHA >= 1.5 && < 1.7,
streaming-commons >= 0.1 && < 0.3,
text >= 0.10 && < 2.2,
entropy >= 0.2.1 && < 0.5
Test-suite websockets-tests
Type: exitcode-stdio-1.0
Hs-source-dirs: src tests/haskell
Main-is: TestSuite.hs
Ghc-options: -Wall
C-sources: cbits/cbits.c
Default-language: Haskell2010
Other-modules:
Network.WebSockets
Network.WebSockets.Client
Network.WebSockets.Connection
Network.WebSockets.Connection.Options
Network.WebSockets.Connection.PingPong
Network.WebSockets.Extensions
Network.WebSockets.Extensions.Description
Network.WebSockets.Extensions.PermessageDeflate
Network.WebSockets.Extensions.PermessageDeflate.Tests
Network.WebSockets.Extensions.StrictUnicode
Network.WebSockets.Extensions.Tests
Network.WebSockets.Handshake.Tests
Network.WebSockets.Http
Network.WebSockets.Http.Tests
Network.WebSockets.Hybi13
Network.WebSockets.Hybi13.Demultiplex
Network.WebSockets.Hybi13.Demultiplex.Tests
Network.WebSockets.Hybi13.Mask
Network.WebSockets.Mask.Tests
Network.WebSockets.Protocol
Network.WebSockets.Server
Network.WebSockets.Server.Tests
Network.WebSockets.Stream
Network.WebSockets.Tests
Network.WebSockets.Tests.Util
Network.WebSockets.Types
Paths_websockets
Build-depends:
HUnit >= 1.2 && < 1.7,
QuickCheck >= 2.7 && < 2.15,
test-framework >= 0.4 && < 0.9,
test-framework-hunit >= 0.2 && < 0.4,
test-framework-quickcheck2 >= 0.2 && < 0.4,
-- Copied from regular dependencies...
async >= 2.2 && < 2.3,
attoparsec >= 0.10 && < 0.15,
base >= 4.14 && < 5,
base64-bytestring >= 0.1 && < 1.3,
binary >= 0.8.1 && < 0.11,
bytestring >= 0.9 && < 0.13,
case-insensitive >= 0.3 && < 1.3,
containers >= 0.3 && < 0.7,
network >= 2.3 && < 3.3,
random >= 1.0 && < 1.3,
SHA >= 1.5 && < 1.7,
streaming-commons >= 0.1 && < 0.3,
text >= 0.10 && < 2.2,
entropy >= 0.2.1 && < 0.5
Executable websockets-server-example
If !flag(Example)
Buildable: False
Hs-source-dirs: example
Main-is: server.lhs
Ghc-options: -Wall
Default-language: Haskell2010
Build-depends:
base,
websockets,
text
Executable websockets-client-example
If !flag(Example)
Buildable: False
Hs-source-dirs: example
Main-is: client.hs
Ghc-options: -Wall
Default-language: Haskell2010
Build-depends:
base,
websockets,
text,
network,
mtl
Executable websockets-autobahn
If !flag(Example)
Buildable: False
Hs-source-dirs: tests/autobahn
Main-is: server.hs
Ghc-options: -Wall -threaded -O2 -rtsopts "-with-rtsopts=-N"
Default-language: Haskell2010
Other-modules:
Paths_websockets
Build-depends:
websockets,
-- Copied from regular dependencies...
async >= 2.2 && < 2.3,
attoparsec >= 0.10 && < 0.15,
base >= 4.14 && < 5,
base64-bytestring >= 0.1 && < 1.3,
binary >= 0.8.1 && < 0.11,
bytestring >= 0.9 && < 0.13,
case-insensitive >= 0.3 && < 1.3,
containers >= 0.3 && < 0.7,
network >= 2.3 && < 3.3,
random >= 1.0 && < 1.3,
SHA >= 1.5 && < 1.7,
text >= 0.10 && < 2.2,
entropy >= 0.2.1 && < 0.5
Benchmark bench-mask
Type: exitcode-stdio-1.0
Main-is: mask.hs
C-sources: cbits/cbits.c
Hs-source-dirs: benchmarks, src
Default-language: Haskell2010
Other-modules:
Network.WebSockets.Hybi13.Mask
Build-depends:
criterion,
-- Copied from regular dependencies...
async >= 2.2 && < 2.3,
attoparsec >= 0.10 && < 0.15,
base >= 4.14 && < 5,
base64-bytestring >= 0.1 && < 1.3,
binary >= 0.8.1 && < 0.11,
bytestring >= 0.9 && < 0.13,
case-insensitive >= 0.3 && < 1.3,
containers >= 0.3 && < 0.7,
network >= 2.3 && < 3.3,
random >= 1.0 && < 1.3,
SHA >= 1.5 && < 1.7,
text >= 0.10 && < 2.2,
entropy >= 0.2.1 && < 0.5