]> gitweb @ CieloNegro.org - time-http.git/blob - time-http.cabal
RFC822
[time-http.git] / time-http.cabal
1 Name:                time-http
2 Version:             0.2
3 Synopsis:            Parse and format HTTP/1.1 Date and Time strings
4 Description:
5         This package provides functionalities to parse and format
6         various Date and Time formats allowed in HTTP\/1.1 (RFC 2616).
7
8 Homepage:            http://cielonegro.org/HTTPDateTime.html
9 Bug-Reports:         http://static.cielonegro.org/ditz/time-http/
10 License:             PublicDomain
11 License-file:        COPYING
12 Author:              PHO <pho AT cielonegro DOT org>
13 Maintainer:          PHO <pho AT cielonegro DOT org>
14 Stability:           Experimental
15 Category:            Web
16 Build-type:          Simple
17 Tested-With:         GHC == 7.0.3
18 Cabal-version:       >= 1.10
19 Extra-Source-Files:
20     COPYING
21     ChangeLog
22
23 Source-Repository head
24     Type: git
25     Location: git://git.cielonegro.org/time-http.git
26
27 Library
28     Exposed-modules:
29         Data.Time.Asctime
30         Data.Time.HTTP
31         Data.Time.RFC1123
32         Data.Time.RFC733
33         Data.Time.RFC822
34
35     Other-modules:
36         Data.Time.HTTP.Common
37         Data.Time.HTTP.Internal
38         Data.Time.RFC1123.Internal
39
40     Build-depends:
41         ascii                == 0.0.*,
42         attempt              == 0.3.*,
43         attoparsec           == 0.9.*,
44         base                 == 4.*,
45         base-unicode-symbols == 0.2.*,
46         blaze-builder        == 0.3.*,
47         blaze-textual        == 0.2.*,
48         bytestring           == 0.9.*,
49         convertible-text     == 0.4.*,
50         tagged               == 0.2.*,
51         time                 == 1.2.*
52
53     Default-Language:
54          Haskell2010
55
56     GHC-Options:
57         -Wall
58
59 Test-Suite test-time-http
60     Type:    exitcode-stdio-1.0
61     Main-Is: Test/Time/HTTP.hs
62     Default-Language: Haskell2010
63     Build-depends:
64         QuickCheck           == 2.4.*,
65         ascii                == 0.0.*,
66         attempt              == 0.3.*,
67         attoparsec           == 0.9.*,
68         base                 == 4.*,
69         base-unicode-symbols == 0.2.*,
70         blaze-builder        == 0.3.*,
71         blaze-textual        == 0.2.*,
72         bytestring           == 0.9.*,
73         convertible-text     == 0.4.*,
74         tagged               == 0.2.*,
75         time                 == 1.2.*
76     GHC-Options:
77         -Wall -fno-warn-orphans