-
Notifications
You must be signed in to change notification settings - Fork 8
/
scalable-server.cabal
42 lines (27 loc) · 1.01 KB
/
scalable-server.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
Name: scalable-server
Synopsis: Library for writing fast/scalable TCP-based services
Description: Library for writing fast/scalable TCP-based services
Version: 0.3.3
License: BSD3
License-file: LICENSE
Homepage: https://github.com/jamwt/haskell-scalable-server/
Author: Jamie Turner
Maintainer: jamie@bu.mp
Category: Network
Build-type: Simple
Extra-source-files: example.hs
Cabal-version: >=1.2
Library
Exposed-modules: Network.Server.ScalableServer
hs-source-dirs: src
Build-depends: base >=4 && <5,
bytestring >=0.9,
attoparsec >=0.10 && < 0.11,
network>=2.3,
blaze-builder>=0.3 && <0.4,
conduit>=1.0 && < 1.1,
network-conduit>=1.0 && < 1.1,
mtl >=2,
attoparsec-conduit>=1.0 && < 1.1
Extensions: ScopedTypeVariables
ghc-options: -O2