-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathecho.cabal
More file actions
38 lines (31 loc) · 1.13 KB
/
echo.cabal
File metadata and controls
38 lines (31 loc) · 1.13 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
name: echo
version: 0.1.0.0
synopsis: A simple echo WebSocket server
homepage: http://alexrudyk.com
author: Alex Rudyk
maintainer: alr@me.com
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
executable echo
main-is: Server.hs
ghc-options: -Wall
build-depends: base == 4.7.*
, text == 1.2.*
, http-types == 0.8.*
, websockets == 0.9.*
, wai == 3.0.*
, wai-websockets == 3.0.*
, warp == 3.0.*
default-language: Haskell2010
default-extensions: OverloadedStrings
test-suite tests
main-is: Tests.hs
ghc-options: -Wall
type: exitcode-stdio-1.0
build-depends: base == 4.7.*
, text == 1.2.*
, hspec == 2.1.*
default-language: Haskell2010
default-extensions: OverloadedStrings