-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttpd-shed.cabal
45 lines (38 loc) · 1.2 KB
/
httpd-shed.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
Name: httpd-shed
Version: 0.4.0.1
Cabal-Version: >= 1.2
License: BSD3
License-File: LICENSE
Author: Andy Gill, Brandon Moore, Henning Thielemann, John Van Enk.
Category: Network, Web
Synopsis: A simple web-server with an interact style API
Description:
This web server promotes a Request to IO Response function
into a local web server. The user can decide how to interpret
the requests, and the library is intended for implementing Ajax APIs.
Maintainer: Andy Gill
Copyright: (c) 2009 Andy Gill
Build-Type: Simple
Source-Repository this
Tag: 0.4.0.1
Type: git
Location: https://github.com/andygill/httpd-shed/
Source-Repository head
Type: git
Location: https://github.com/andygill/httpd-shed/
Flag buildExamples
Description: Build example executables
Default: False
Library
Build-Depends:
network >=2.3 && <2.5,
base >=4.0 && <5.0
Ghc-Options: -Wall
Exposed-modules:
Network.Shed.Httpd
-- Trivial test; we need real tests!
Executable httpd-shed-test
If !flag(buildExamples)
Buildable: False
Main-Is: Main.hs
Hs-Source-Dirs: ., test