]> gitweb @ CieloNegro.org - time-http.git/blob - time-http.cabal
40d4dc4e3062a8914774d727b3be8fea2ec62467
[time-http.git] / time-http.cabal
1 Name:                time-http
2 Version:             0.4
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         Data.Time.Format.RFC822.Internal
39
40     Build-depends:
41         ascii                == 0.0.*,
42         attempt              == 0.3.*,
43         attoparsec           == 0.10.*,
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         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         failure              == 0.1.*,
76         tagged               == 0.2.*,
77         time                 == 1.2.*
78     GHC-Options:
79         -Wall -fno-warn-orphans