]> gitweb @ CieloNegro.org - time-http.git/blob - time-http.cabal
Data.Time.RFC822 now fully works
[time-http.git] / time-http.cabal
1 Name:                time-http
2 Version:             0.1
3 Synopsis:            Parse and format HTTP/1.1 Date and Time string
4 Description:
5         This package provides functionalities to parse and format
6         various Date and Time formats allowed by HTTP\/1.1 (RFC 2616).
7
8 Homepage:            http://cielonegro.org/HTTPDateTime.html
9 License:             PublicDomain
10 License-file:        COPYING
11 Author:              PHO <pho AT cielonegro DOT org>
12 Maintainer:          PHO <pho AT cielonegro DOT org>
13 Stability:           Experimental
14 Category:            Web
15 Build-type:          Simple
16 Cabal-version:       >=1.2
17
18 Source-Repository head
19     Type: git
20     Location: git://git.cielonegro.org/time-http.git
21
22 Library
23     Exposed-modules:
24         Data.Time.RFC822
25         Data.Time.RFC822.Parsec
26
27     Other-modules:
28         Data.Time.HTTP.Common
29
30     Build-depends:
31         base >= 4.2 && < 4.3,
32         parsec >= 3.0 && < 3.1,
33         time >= 1.1 && < 1.2
34
35     Extensions:
36         FlexibleContexts