]> gitweb @ CieloNegro.org - time-http.git/blob - time-http.cabal
update ChangeLog
[time-http.git] / time-http.cabal
1 Name:                time-http
2 Version:             0.5
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
7         (<http://tools.ietf.org/html/rfc2616#section-3.3>).
8
9 Homepage:            http://cielonegro.org/HTTPDateTime.html
10 Bug-Reports:         http://static.cielonegro.org/ditz/time-http/
11 License:             PublicDomain
12 License-file:        COPYING
13 Author:              PHO <pho AT cielonegro DOT org>
14 Maintainer:          PHO <pho AT cielonegro DOT org>
15 Stability:           Experimental
16 Category:            Time, Web
17 Build-type:          Simple
18 Tested-With:         GHC == 7.0.3
19 Cabal-version:       >= 1.10
20 Extra-Source-Files:
21     COPYING
22     ChangeLog
23
24 Source-Repository head
25     Type: git
26     Location: git://git.cielonegro.org/time-http.git
27
28 Library
29     Exposed-modules:
30         Data.Time.Format.C
31         Data.Time.Format.RFC733
32         Data.Time.Format.RFC822
33         Data.Time.Format.RFC1123
34         Data.Time.Format.HTTP
35
36     Other-modules:
37         Data.Time.Format.HTTP.Common
38
39     Build-depends:
40         ascii                == 0.0.*,
41         attempt              == 0.3.*,
42         attoparsec           == 0.10.*,
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         data-default         == 0.3.*,
50         failure              == 0.1.*,
51         tagged               == 0.2.*,
52         time                 == 1.2.*
53
54     Default-Language:
55          Haskell2010
56
57     GHC-Options:
58         -Wall
59
60 Test-Suite test-time-http
61     Type:    exitcode-stdio-1.0
62     Main-Is: Test/Time/Format/HTTP.hs
63     Default-Language: Haskell2010
64     Build-depends:
65         QuickCheck           == 2.4.*,
66         ascii                == 0.0.*,
67         attempt              == 0.3.*,
68         attoparsec           == 0.10.*,
69         base                 == 4.*,
70         base-unicode-symbols == 0.2.*,
71         blaze-builder        == 0.3.*,
72         blaze-textual        == 0.2.*,
73         bytestring           == 0.9.*,
74         convertible-text     == 0.4.*,
75         data-default         == 0.3.*,
76         failure              == 0.1.*,
77         tagged               == 0.2.*,
78         time                 == 1.2.*
79     GHC-Options:
80         -Wall -fno-warn-orphans