packages feed

opml-conduit-0.2.0.0: opml-conduit.cabal

name:                opml-conduit
version:             0.2.0.0
synopsis:            Streaming parser/renderer for the OPML 2.0 format.
description:
    This library implements the OPML 2.0 standard (<http://dev.opml.org/spec2.html>) as a 'conduit' parser/renderer.
homepage:            https://github.com/k0ral/opml-conduit
license:             OtherLicense
license-file:        LICENSE
author:              koral <koral@mailoo.org>
maintainer:          koral <koral@mailoo.org>
category:            Conduit, Text, XML
build-type:          Simple
cabal-version:       >=1.10
data-files:
  data/category.opml
  data/directory.opml
  data/placesLived.opml
  data/simpleScript.opml
  data/states.opml
  data/subscriptionList.opml

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

library
  exposed-modules:
    Text.OPML
    Text.OPML.Arbitrary
    Text.OPML.Stream.Parse
    Text.OPML.Stream.Render
    Text.OPML.Types
  build-depends:
      base >= 4.8 && < 5
    , case-insensitive
    , conduit
    , containers
    , data-default
    , exceptions
    , hashable
    , hashable-time
    , lens
    , monoid-subclasses
    , mono-traversable
    , network-uri >= 2.6
    , QuickCheck
    , quickcheck-instances
    , semigroups
    , text
    , time >= 1.5
    , timerep >= 2.0.0
    , unordered-containers
    , xml-conduit >= 1.2.5
    , xml-types
  default-language: Haskell2010
  ghc-options: -Wall -fno-warn-unused-do-bind

test-suite tests
  type: exitcode-stdio-1.0
  hs-source-dirs: test
  main-is: Main.hs
  other-modules: Paths_opml_conduit
  build-depends:
      base >= 4.8
    , conduit
    , conduit-combinators
    , containers
    , exceptions
    , hlint
    , lens
    , mtl
    , network-uri >= 2.6
    , opml-conduit
    , resourcet
    , tasty
    , tasty-hunit
    , tasty-quickcheck
    , xml-conduit >= 1.2.5
  default-language:    Haskell2010
  ghc-options: -Wall