packages feed

rss-conduit-0.2.0.0: rss-conduit.cabal

name:                rss-conduit
version:             0.2.0.0
synopsis:            Streaming parser/renderer for the RSS 2.0 standard.
description:         Cf README file.
license:             OtherLicense
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/rss-conduit.git

library
  exposed-modules:
    Text.RSS.Conduit.Parse
    Text.RSS.Conduit.Render
    Text.RSS.Lens
    Text.RSS.Types
  -- other-modules:
  build-depends:
      base >= 4.8 && < 5
    , conduit
    , conduit-parse
    , containers
    , exceptions
    , foldl
    , lens-simple
    , mono-traversable
    , parsers
    , safe
    , text
    , time >= 1.5
    , timerep >= 2.0
    , uri-bytestring >= 0.2
    , xml-conduit >= 1.3
    , xml-conduit-parse >= 0.3
    , xml-types
  default-language: Haskell2010

test-suite Tests
  type: exitcode-stdio-1.0
  hs-source-dirs: test
  main-is: Main.hs
  other-modules: Arbitrary
  build-depends:
      rss-conduit
    , base >= 4.8 && < 5
    , bytestring
    , conduit
    , conduit-extra
    , conduit-parse
    , data-default
    , exceptions
    , hlint
    , lens-simple
    , mono-traversable
    , parsers
    , QuickCheck
    , quickcheck-instances
    , resourcet
    , tasty
    , tasty-hunit
    , tasty-quickcheck
    , time >= 1.5
    , text
    , uri-bytestring >= 0.2
    , xml-conduit >= 1.3
    , xml-conduit-parse >= 0.3
    , xml-types
  default-language: Haskell2010