forked from jaspervdj/websockets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebsockets.cabal
80 lines (68 loc) · 2.29 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
Name: websockets
Version: 0.3.0.0
Cabal-version: >=1.6
Synopsis:
Provides a sensible, clean and simple way to write WebSocket-capable servers
in Haskell.
Description:
This library allows you to write WebSocket-capable servers.
.
See an example: <http://github.com/jaspervdj/websockets/tree/master/example>.
.
The API of the 'Network.WebSockets' module should also contain enough
information to get you started.
.
This library currently works with Chromium @>= 14@, and Firefox @>= 6@.
.
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
Author: Siniša Biđin <[email protected]>
Jasper Van der Jeugt <[email protected]>
Maintainer: Siniša Biđin <[email protected]>
Jasper Van der Jeugt <[email protected]>
Stability: experimental
Category: Network
Tested-with: GHC ==6.12
Build-type: Simple
Library
Hs-source-dirs: src
Ghc-options: -Wall
Exposed-modules:
Network.WebSockets
Other-modules:
Network.WebSockets.Decode
Network.WebSockets.Demultiplex
Network.WebSockets.Encode
Network.WebSockets.Handshake
Network.WebSockets.Mask
Network.WebSockets.Monad
Network.WebSockets.Socket
Network.WebSockets.Types
Build-depends:
attoparsec >= 0.9 && < 0.10,
attoparsec-enumerator >= 0.2 && < 0.3,
base >= 4 && < 5,
base64-bytestring >= 0.1 && < 0.2,
binary >= 0.5 && < 0.6,
blaze-builder >= 0.3 && < 0.4,
blaze-builder-enumerator >= 0.2 && < 0.3,
bytestring >= 0.9 && < 0.10,
case-insensitive >= 0.2 && < 0.3,
enumerator >= 0.4.13 && < 0.5,
mtl >= 2.0 && < 2.2,
network >= 2.3 && < 2.4,
random >= 1.0 && < 1.1,
SHA >= 1.5 && < 1.6,
text >= 0.10 && < 0.12
Source-repository head
Type: git
Location: https://github.com/jaspervdj/websockets