]> gitweb @ CieloNegro.org - time-http.git/blob - time-http.cabal
Delete Data.Time.Asctime.Internal
[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         Data.Time.RFC733.Internal
40         Data.Time.RFC822.Internal
41
42     Build-depends:
43         ascii                == 0.0.*,
44         attoparsec           == 0.9.*,
45         blaze-builder        == 0.3.*,
46         blaze-textual        == 0.2.*,
47         base                 == 4.*,
48         base-unicode-symbols == 0.2.*,
49         convertible-text     == 0.3.*,
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         attoparsec           == 0.9.*,
67         blaze-builder        == 0.3.*,
68         blaze-textual        == 0.2.*,
69         base                 == 4.*,
70         base-unicode-symbols == 0.2.*,
71         convertible-text     == 0.3.*,
72         tagged               == 0.2.*,
73         time                 == 1.2.*
74     GHC-Options:
75         -Wall -fno-warn-orphans