File: http-date.cabal

package info (click to toggle)
haskell-http-date 0.0.11-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 92 kB
  • sloc: haskell: 349; makefile: 2
file content (52 lines) | stat: -rw-r--r-- 1,758 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Name:                   http-date
Version:                0.0.11
Author:                 Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer:             Kazu Yamamoto <kazu@iij.ad.jp>
License:                BSD3
License-File:           LICENSE
Synopsis:               HTTP Date parser/formatter
Description:            Fast parser and formatter for HTTP Date
Category:               Network, Web
Cabal-Version:          >= 1.10
Build-Type:             Simple

Library
  Default-Language:     Haskell2010
  GHC-Options:          -Wall
  Exposed-Modules:      Network.HTTP.Date
  Other-Modules:        Network.HTTP.Date.Converter
                        Network.HTTP.Date.Formatter
                        Network.HTTP.Date.Types
                        Network.HTTP.Date.Parser
  Build-Depends:        base >= 4.9 && < 5
                      , array
                      , attoparsec
                      , bytestring
                      , time

Test-Suite spec
  Default-Language:     Haskell2010
  Type:                 exitcode-stdio-1.0
  HS-Source-Dirs:       test
  Main-Is:              Spec.hs
  Other-Modules:        DateSpec
                        Model
  Build-Depends:        base >= 4.9 && < 5
                      , bytestring
                      , hspec
                      , http-date
                      , old-locale
                      , time

Test-Suite doctests
  Default-Language:     Haskell2010
  Type:                 exitcode-stdio-1.0
  HS-Source-Dirs:       test
  Ghc-Options:          -threaded
  Main-Is:              doctests.hs
  Build-Depends:        base >= 4.9
                      , doctest >= 0.8

Source-Repository head
  Type:                 git
  Location:             git://github.com/kazu-yamamoto/http-date