forked from jaspervdj/websockets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebsockets.cabal
123 lines (112 loc) · 4.31 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
Name: websockets
Version: 0.7.1.0
Synopsis:
A sensible and clean way to write WebSocket-capable servers in Haskell.
Description:
This library allows you to write WebSocket-capable servers.
.
See an example: <http://jaspervdj.be/websockets/example.html>.
.
The API of the 'Network.WebSockets' module should also contain enough
information to get you started.
.
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 Jasper Van der Jeugt
(c) 2011 Steffen Schuldenzucker
(c) 2011 Alex Lang
Author: Siniša Biđin <[email protected]>
Jasper Van der Jeugt <[email protected]>
Steffen Schuldenzucker <[email protected]>
Alex Lang <[email protected]>
Maintainer: Jasper Van der Jeugt <[email protected]>
Stability: experimental
Category: Network
Build-type: Simple
Cabal-version: >= 1.8
Homepage: http://jaspervdj.be/websockets
Bug-reports: https://github.com/jaspervdj/websockets/issues
Library
Hs-source-dirs: src
Ghc-options: -Wall
Exposed-modules:
Network.WebSockets
Network.WebSockets.Internal
Network.WebSockets.Util.PubSub
Other-modules:
Network.WebSockets.Client
Network.WebSockets.Handshake
Network.WebSockets.Handshake.Http
Network.WebSockets.Monad
Network.WebSockets.Protocol
Network.WebSockets.Protocol.Hybi00
Network.WebSockets.Protocol.Hybi00.Internal
Network.WebSockets.Protocol.Hybi10
Network.WebSockets.Protocol.Hybi10.Demultiplex
Network.WebSockets.Protocol.Hybi10.Internal
Network.WebSockets.Protocol.Hybi10.Mask
Network.WebSockets.Protocol.Unsafe
Network.WebSockets.Socket
Network.WebSockets.Types
Build-depends:
attoparsec >= 0.9 && < 0.11,
attoparsec-enumerator >= 0.2 && < 0.4,
base >= 4 && < 5,
base64-bytestring >= 0.1 && < 1.1,
binary >= 0.5 && < 0.6,
blaze-builder >= 0.3 && < 0.4,
blaze-builder-enumerator >= 0.2 && < 0.3,
bytestring >= 0.9 && < 0.11,
case-insensitive >= 0.3 && < 0.5,
containers >= 0.3 && < 0.6,
enumerator >= 0.4.13 && < 0.5,
mtl >= 2.0 && < 2.2,
network >= 2.3 && < 2.5,
network-enumerator >= 0.1 && < 0.2,
random >= 1.0 && < 1.1,
SHA >= 1.5 && < 1.6,
text >= 0.10 && < 0.12,
pureMD5 >= 0.2.2 && < 2.2,
entropy >= 0.2.1 && < 0.3
Test-suite websockets-tests
Type: exitcode-stdio-1.0
Hs-source-dirs: src tests/haskell
Main-is: TestSuite.hs
Ghc-options: -Wall
Build-depends:
HUnit >= 1.2 && < 1.3,
QuickCheck >= 2.4 && < 2.6,
test-framework >= 0.4 && < 0.7,
test-framework-hunit >= 0.2 && < 0.3,
test-framework-quickcheck2 >= 0.2 && < 0.3,
-- Copied from regular dependencies...
attoparsec >= 0.9 && < 0.11,
attoparsec-enumerator >= 0.2 && < 0.4,
base >= 4 && < 5,
base64-bytestring >= 0.1 && < 1.1,
binary >= 0.5 && < 0.6,
blaze-builder >= 0.3 && < 0.4,
blaze-builder-enumerator >= 0.2 && < 0.3,
bytestring >= 0.9 && < 0.11,
case-insensitive >= 0.3 && < 0.5,
containers >= 0.3 && < 0.6,
enumerator >= 0.4.13 && < 0.5,
mtl >= 2.0 && < 2.2,
network >= 2.3 && < 2.5,
network-enumerator >= 0.1 && < 0.2,
random >= 1.0 && < 1.1,
SHA >= 1.5 && < 1.6,
text >= 0.10 && < 0.12,
pureMD5 >= 0.2.2 && < 2.2,
entropy >= 0.2.1 && < 0.3
Source-repository head
Type: git
Location: https://github.com/jaspervdj/websockets