packages feed

bytestring-time-0.1.0: bytestring-time.cabal

name:           bytestring-time
version:        0.1.0
synopsis:       Library for Time parsing from ByteString
License:        BSD3
License-file:   LICENSE
Extra-Source-Files:
                CHANGES.md
description:
    Parser for ISO date from ByteString
homepage:       https://github.com/klangner/bytestring-time
author:         Krzysztof Langner
maintainer:     klangner@gmail.com
category:       Data
build-type:     Simple
cabal-version:  >=1.10

source-repository head
  type:     git
  location: https://github.com/klangner/bytestring-time

library
  hs-source-dirs:   src
  default-language: Haskell2010
  ghc-options:      -Wall
  build-depends:
                    base >= 4.7 && < 5,
                    attoparsec < 0.14,
                    bytestring < 0.11,
                    text < 2,
                    time < 2
  exposed-modules:
                    Data.ByteString.Time
  other-modules:
                    Data.ByteString.Time.Parsers

test-suite unit-tests
  type:             exitcode-stdio-1.0
  main-is:          Spec.hs
  default-language: Haskell2010
  build-depends:
                    base >= 4 && <5,
                    hspec >=2 && <3,
                    QuickCheck >=2.6 && <3,
                    Cabal >=1.16.0 && <2,
                    attoparsec < 0.14,
                    bytestring < 0.11,
                    text < 2,
                    time < 2
  other-modules:
                    Data.ByteString.Time,
                    Data.ByteString.TimeSpec
  hs-source-dirs:
                    src,
                    test-src