packages feed

atom-conduit-0.4.0.3: atom-conduit.cabal

name:                atom-conduit
version:             0.4.0.3
synopsis:            Streaming parser/renderer for the Atom 1.0 standard (RFC 4287).
description:         Please refer to README.
license:             PublicDomain
license-file:        LICENSE
author:              koral
maintainer:          koral att mailoo dott org
category:            XML, Conduit
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

source-repository head
    type:     git
    location: git://github.com/k0ral/atom-conduit.git

library
  exposed-modules:
    Text.Atom.Conduit.Parse
    Text.Atom.Conduit.Render
    Text.Atom.Lens
    Text.Atom.Types
  -- other-modules:
  build-depends:
      base >= 4.8 && < 5
    , blaze-builder
    , conduit
    , conduit-combinators >= 1.0.5
    , safe-exceptions
    , lens-simple
    , mono-traversable >= 1.0.0.1
    , parsers
    , text
    , time >= 1.5
    , timerep >= 2.0
    , uri-bytestring >= 0.2
    , xml-conduit >= 1.5
    , xml-types
  default-language:    Haskell2010

test-suite Tests
  type: exitcode-stdio-1.0
  hs-source-dirs: test
  main-is: Main.hs
  build-depends: atom-conduit,
                 base >= 4.8,
                 conduit,
                 data-default,
                 safe-exceptions,
                 hlint,
                 lens-simple,
                 mono-traversable >= 1.0.0.1,
                 parsers,
                 quickcheck-instances,
                 resourcet,
                 tasty,
                 tasty-hunit,
                 tasty-quickcheck,
                 time >= 1.5,
                 text,
                 uri-bytestring >= 0.2,
                 xml-conduit >= 1.4,
                 xml-types
  default-language:    Haskell2010