forked from ocharles/engine.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexamples.cabal
More file actions
65 lines (59 loc) · 1.03 KB
/
Copy pathexamples.cabal
File metadata and controls
65 lines (59 loc) · 1.03 KB
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
name: examples
version: 1.0.0
homepage: http://github.com/ocharles/engine.io
license: BSD3
license-file: LICENSE
author: Oliver Charles
maintainer: ollie@ocharles.org.uk
category: Web
build-type: Simple
cabal-version: >=1.10
Executable chat-example
default-language: Haskell2010
main-is: chat/Main.hs
build-depends:
aeson,
base,
engine-io,
engine-io-snap,
mtl,
snap-cors,
snap-server,
socket-io,
stm,
text,
transformers
ghc-options: -Wall
Executable latency-example
default-language: Haskell2010
main-is: latency/Main.hs
build-depends:
aeson,
base,
engine-io,
engine-io-snap,
mtl,
snap-cors,
snap-server,
socket-io,
stm,
text,
transformers
ghc-options: -Wall -O2
Executable binary
default-language: Haskell2010
main-is: binary/Main.hs
build-depends:
aeson,
base,
bytestring,
engine-io,
engine-io-snap,
mtl,
snap-cors,
snap-server,
socket-io,
stm,
text,
transformers
ghc-options: -Wall -O2