-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathhyena.cabal
48 lines (43 loc) · 1.12 KB
/
hyena.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
name: hyena
version: 0.1.0.1
synopsis: Simple web application server
description:
A simple web application server using iteratees.
license: BSD3
license-file: LICENSE
author: Johan Tibell <[email protected]>
maintainer: Johan Tibell <[email protected]>
build-type: Simple
cabal-version: >= 1.6
homepage: http://github.com/tibbe/hyena
category: Network
library
exposed-modules:
Hyena.Config
Hyena.Server
Network.Wai
other-modules:
Data.Enumerator
Hyena.Http
Hyena.Logging
Hyena.Parser
build-depends:
base == 4.*,
bytestring < 1.0,
containers >= 0.3 && < 0.4,
directory,
extensible-exceptions,
filepath,
mtl >= 1 && < 2.0.2,
network >= 2.1 && < 2.3,
network-bytestring >= 0.1.1.2 && < 0.2
if !os(windows)
build-depends:
unix
extensions: Rank2Types
ghc-options: -funbox-strict-fields -Wall
if impl(ghc >= 6.8)
ghc-options: -fwarn-tabs
source-repository head
type: git
location: git://github.com/tibbe/hyena.git