-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathsocket-io.cabal
38 lines (34 loc) · 1016 Bytes
/
socket-io.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
name: socket-io
version: 1.3.12
homepage: http://github.com/ocharles/engine.io
license: BSD3
license-file: LICENSE
author: Oliver Charles
maintainer: [email protected]
build-type: Simple
cabal-version: >=1.10
extra-source-files: Changelog.md
description:
This library provides an implementation of <http://socket.io Socket.io>
protocol (version 1). It builds on top of Engine.IO, allowing Socket.io to
work with both long polling XHR requests, and seamlessly upgrading them to
HTML 5 web sockets.
library
exposed-modules:
Network.SocketIO
other-extensions:
FlexibleContexts, OverloadedStrings, RankNTypes
build-depends:
aeson >=0.7 && <1.6,
attoparsec >=0.10 && <0.14,
base >=4.6 && <4.15,
bytestring >=0.10 && <0.12,
engine-io >= 1 && <1.3,
mtl >=2.1 && <2.3,
stm >=2.4 && <2.6,
text >=0.11 && <1.3,
transformers >=0.2 && <0.6,
unordered-containers >=0.2 && <0.3,
vector >=0.10 && <0.13
hs-source-dirs: src
default-language: Haskell2010