aa286fd
name:            attoparsec-iso8601
aa286fd
version:         1.0.2.0
aa286fd
x-revision: 1
aa286fd
synopsis:        Parsing of ISO 8601 dates, originally from aeson.
aa286fd
description:     Parsing of ISO 8601 dates, originally from aeson.
aa286fd
license:         BSD3
aa286fd
license-file:    LICENSE
aa286fd
category:        Parsing
aa286fd
copyright:       (c) 2011-2016 Bryan O'Sullivan
aa286fd
                 (c) 2011 MailRank, Inc.
aa286fd
author:          Bryan O'Sullivan <bos@serpentine.com>
aa286fd
maintainer:      Adam Bergmark <adam@bergmark.nl>
aa286fd
stability:       experimental
aa286fd
cabal-version:   >=1.10
aa286fd
homepage:        https://github.com/haskell/aeson
aa286fd
bug-reports:     https://github.com/haskell/aeson/issues
aa286fd
build-type:      Simple
aa286fd
tested-with:     GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.3, GHC == 8.10.1
aa286fd
extra-source-files:
aa286fd
  README.md
aa286fd
aa286fd
flag developer
aa286fd
  description: operate in developer mode
aa286fd
  default: False
aa286fd
  manual: True
aa286fd
aa286fd
flag fast
aa286fd
  description: compile without optimizations
aa286fd
  default: False
aa286fd
  manual: True
aa286fd
aa286fd
library
aa286fd
  hs-source-dirs:      .
aa286fd
  default-language:    Haskell2010
aa286fd
  ghc-options:         -Wall
aa286fd
  exposed-modules:
aa286fd
    Data.Attoparsec.Time.Internal
aa286fd
    Data.Attoparsec.Time
aa286fd
  build-depends:
aa286fd
    attoparsec >= 0.13.0.1 && < 0.15,
aa286fd
    base >= 4.7 && < 5,
aa286fd
    base-compat-batteries >= 0.10.0 && < 0.12,
aa286fd
    time-compat >= 1.9.4 && < 1.10,
aa286fd
    text >= 1.1.1.0 && < 1.3.0.0,
aa286fd
    time >= 1.1.1.4 && < 1.12
aa286fd
aa286fd
  if flag(fast)
aa286fd
    ghc-options: -O0
aa286fd
  else
aa286fd
    ghc-options: -O2
aa286fd
aa286fd
  if flag(developer)
aa286fd
    ghc-options: -Werror
aa286fd
    ghc-prof-options: -auto-all
aa286fd
aa286fd
source-repository head
aa286fd
  type:     git
aa286fd
  location: git://github.com/haskell/aeson.git
aa286fd
  subdir:   attoparsec-iso8601