-
Notifications
You must be signed in to change notification settings - Fork 2
/
n2o.cabal
53 lines (51 loc) · 1.13 KB
/
n2o.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
name: n2o
version: 0.1.0.0
license: MIT
Synopsis: WebSocket Application Server
description: web framework
license-file: LICENSE
author: Andrii Melnykov
maintainer: [email protected]
category: Web
build-type: Simple
extra-source-files:
README.md
src/Network/N2O.hs
src/Network/N2O/Jq.hs
src/Network/N2O/PubSub.hs
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/nponeccop/n2o.hs
library
ghc-options: -W
build-depends:
base >= 4.7 && < 5
, websockets
, text
, bert
, binary
, bytestring
, ixset
, HJavaScript
, nonce
exposed-modules:
Network.N2O
, Network.N2O.Jq
, Network.N2O.PubSub
, Network.N2O.Session
hs-source-dirs: src
default-language: Haskell2010
executable n2o-chat
main-is: server.hs
ghc-options: -W
build-depends:
base >= 4.7 && < 5
, n2o
, text
, bert
, ixset
, HJavaScript
, websockets
hs-source-dirs: sample
default-language: Haskell2010