]> gitweb @ CieloNegro.org - time-http.git/blob - time-http.cabal
RFC1123
[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
39     Build-depends:
40         ascii                == 0.0.*,
41         attempt              == 0.3.*,
42         attoparsec           == 0.9.*,
43         base                 == 4.*,
44         base-unicode-symbols == 0.2.*,
45         blaze-builder        == 0.3.*,
46         blaze-textual        == 0.2.*,
47         bytestring           == 0.9.*,
48         convertible-text     == 0.4.*,
49         tagged               == 0.2.*,
50         time                 == 1.2.*
51
52     Default-Language:
53          Haskell2010
54
55     GHC-Options:
56         -Wall
57
58 Test-Suite test-time-http
59     Type:    exitcode-stdio-1.0
60     Main-Is: Test/Time/HTTP.hs
61     Default-Language: Haskell2010
62     Build-depends:
63         QuickCheck           == 2.4.*,
64         ascii                == 0.0.*,
65         attempt              == 0.3.*,
66         attoparsec           == 0.9.*,
67         base                 == 4.*,
68         base-unicode-symbols == 0.2.*,
69         blaze-builder        == 0.3.*,
70         blaze-textual        == 0.2.*,
71         bytestring           == 0.9.*,
72         convertible-text     == 0.4.*,
73         tagged               == 0.2.*,
74         time                 == 1.2.*
75     GHC-Options:
76         -Wall -fno-warn-orphans