-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlambda-webdev.cabal
More file actions
58 lines (48 loc) · 1.26 KB
/
lambda-webdev.cabal
File metadata and controls
58 lines (48 loc) · 1.26 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
-- Initial src.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: lambda-webdev
version: 0.1.0.0
-- synopsis:
-- description:
license: MIT
license-file: LICENSE
author: Sami Hangaslammi
maintainer: sami.hangaslammi@leonidasoy.fi
-- copyright:
-- category:
build-type: Simple
cabal-version: >=1.8
library
exposed-modules: Network.WebSockets.Messaging
, Network.WebSockets.Messaging.Connection
, Network.WebSockets.Messaging.Container
, Network.WebSockets.Messaging.Message
hs-source-dirs: lib
build-depends: base
, ghc-prim
, websockets ==0.7.*
, aeson ==0.6.*
, text ==0.11.*
, bytestring ==0.9.*
, containers ==0.4.*
, stm ==2.4.*
, transformers ==0.3.*
executable lambda-webdev
main-is: Main.hs
hs-source-dirs: src/hs
build-depends: lambda-webdev
, base
, ghc-prim
, array
, containers ==0.4.*
, http-types ==0.7.*
, websockets ==0.7.*
, wai ==1.3.*
, warp ==1.3.*
, wai-app-static ==1.3.*
, wai-websockets ==1.3.*
, aeson ==0.6.*
, stm ==2.4.*
, transformers ==0.3.*
, text ==0.11.*
, bytestring ==0.9.*