]> gitweb @ CieloNegro.org - time-w3c.git/blob - time-w3c.cabal
b8421729673dd77e3369e617e845f45971a05cf1
[time-w3c.git] / time-w3c.cabal
1 Name:                time-w3c
2 Version:             0.1
3 Synopsis:            Parse, format and convert W3C Date and Time
4 Description:
5         This module provides functionalities to parse and format W3C
6         Date and Time. The module can also be used to convert it
7         from/to "Data.Time.Calendar.Day" and
8         "Data.Time.LocalTime.ZonedTime".
9
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 Homepage:            http://cielonegro.org/W3CDateTime.html
16 Category:            Web
17 Build-type:          Simple
18 Cabal-version:       >= 1.2.3
19 Extra-source-files:
20
21 Library
22     Exposed-modules:
23         Data.Time.W3C
24         Data.Time.W3C.Format
25         Data.Time.W3C.Parser
26         Data.Time.W3C.Parser.Parsec
27         Data.Time.W3C.Types
28
29     Build-depends:
30         base >= 4 && < 5,
31         convertible >= 1.0 && < 2,
32         parsec >= 3 && < 4,
33         time >= 1.1 && < 2
34
35     Extensions:
36         DeriveDataTypeable
37         FlexibleContexts
38         MultiParamTypeClasses
39
40     GHC-Options:
41         -Wall