-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathengine-io.cabal
51 lines (45 loc) · 1.45 KB
/
engine-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
39
40
41
42
43
44
45
46
47
48
49
50
51
name: engine-io
version: 1.2.23
synopsis: A Haskell implementation of Engine.IO
homepage: http://github.com/ocharles/engine.io
license: BSD3
license-file: LICENSE
author: Oliver Charles
maintainer: [email protected]
category: Web
build-type: Simple
cabal-version: >=1.10
description:
This library provides a Haskell implementation of
<https://github.com/Automattic/engine.io Engine.IO>, a library for real-time
client-server communication on the web. Engine.IO works with old browsers via
XHR long-polling, and seamlessy upgrades to web sockets. This implementation
supports the majority of the Engine.IO protocol, including text and binary
packets and the upgrading protocol.
extra-source-files: Changelog.md
library
exposed-modules:
Network.EngineIO
other-extensions:
RankNTypes, OverloadedStrings, RecordWildCards
build-depends:
aeson >=0.7 && <1.6,
async >=2.0 && <2.3,
attoparsec >=0.11 && <0.14,
base >=4.8 && <4.15,
base64-bytestring >=1.0 && <1.3,
bytestring >=0.10.2.0 && <0.12,
errors >= 2.0.0 && <2.4,
free >= 4.9 && <5.2,
monad-loops >=0.4 && <0.5,
mwc-random >=0.13 && <0.16,
stm >=2.4 && <2.6,
stm-delay >= 0.1.1 && <0.2,
text >=0.11 && <1.3,
transformers >=0.2 && <0.6,
unordered-containers >=0.2 && <0.3,
vector >=0.10 && <0.13,
websockets >=0.11 && <0.13
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -O2 -fwarn-incomplete-uni-patterns