]> gitweb @ CieloNegro.org - Lucu.git/blob - Lucu.cabal
Cabal
[Lucu.git] / Lucu.cabal
1 Name: Lucu
2 Synopsis: HTTP Daemonic Library
3 Description:
4         Lucu is an HTTP daemonic library. It can be embedded in any
5         Haskell program and runs in an independent thread.
6         Lucu is not a replacement for Apache. It is intended to be
7         used to create an efficient web-based application without
8         messing around FastCGI. It is also intended to be run behind a
9         reverse-proxy so it doesn't have some facilities like logging,
10         client filtering and so on.
11 Version: 0.1
12 License: PublicDomain
13 Author: PHO <phonohawk at ps dot sakura dot ne dot jp>
14 Maintainer: PHO <phonohawk at ps dot sakura dot ne dot jp>
15 Stability: experimental
16 Homepage: http://ccm.sherry.jp/lucu/
17 Category: Network
18 Tested-With: GHC == 6.6
19 Build-Depends:
20          base, mtl, network, stm, hxt, haskell-src, unix
21 Exposed-Modules:
22         Network.HTTP.Lucu
23         Network.HTTP.Lucu.Abortion
24         Network.HTTP.Lucu.Chunk
25         Network.HTTP.Lucu.Config
26         Network.HTTP.Lucu.DefaultPage
27         Network.HTTP.Lucu.ETag
28         Network.HTTP.Lucu.Headers
29         Network.HTTP.Lucu.HttpVersion
30         Network.HTTP.Lucu.Httpd
31         Network.HTTP.Lucu.Interaction
32         Network.HTTP.Lucu.MIMEType
33         Network.HTTP.Lucu.MIMEType.DefaultExtensionMap
34         Network.HTTP.Lucu.MIMEType.Guess
35         Network.HTTP.Lucu.Parser
36         Network.HTTP.Lucu.Parser.Http
37         Network.HTTP.Lucu.Postprocess
38         Network.HTTP.Lucu.Preprocess
39         Network.HTTP.Lucu.RFC1123DateTime
40         Network.HTTP.Lucu.Request
41         Network.HTTP.Lucu.RequestReader
42         Network.HTTP.Lucu.Resource
43         Network.HTTP.Lucu.Resource.Tree
44         Network.HTTP.Lucu.Response
45         Network.HTTP.Lucu.ResponseWriter
46         Network.HTTP.Lucu.StaticFile
47         Network.HTTP.Lucu.Utils
48 Extra-Source-Files:
49         data/CompileMimeTypes.hs
50         data/mime.types
51         examples/HelloWorld.hs
52         examples/Makefile
53 ghc-options: -fglasgow-exts -O3
54
55 --Executable: HelloWorld
56 --Main-Is: HelloWorld.hs
57 --Hs-Source-Dirs: ., examples
58 --ghc-options: -threaded -fglasgow-exts -O3