packages feed

simple-conduit-0.0.2: simple-conduit.cabal

Name:                simple-conduit
Version:             0.0.2
Synopsis:            A simple streaming library based on composing monadic folds.
Description:
    @simple-conduit@ follows a similar UI to the more capable @conduit@ library, but reduces the scope of what it can solve donw to what can be expressed by chaining monadic folds that allow for early termination.  This allows for more predictable resource management behavior, at the cost of not allowing scenarios that @conduit@ is better designed.
License:             BSD3
License-file:        LICENSE
Author:              John Wiegley
Maintainer:          johnw@newartisans.com
Category:            Data, Conduit
Build-type:          Simple
Cabal-version:       >=1.8
Homepage:            http://github.com/jwiegley/simple-conduit

Library
  Exposed-modules:     Conduit.Simple
  Build-depends:       base                     >= 4.3          && < 5
                     , bifunctors
                     , bytestring
                     , chunked-data
                     , containers
                     , either
                     , exceptions
                     , filepath
                     , lifted-async
                     , lifted-base              >= 0.1
                     , mmorph
                     , monad-control            >= 0.3.1        && < 0.4
                     , mono-traversable
                     , mtl
                     , mwc-random
                     , primitive
                     , streaming-commons
                     , text
                     , transformers             >= 0.2.2        && < 0.5
                     , transformers-base        >= 0.4.1        && < 0.5
                     , vector
                     , void                     >= 0.5.5
  ghc-options:     -Wall

benchmark bench
    hs-source-dirs: test
    main-is: bench.hs
    type: exitcode-stdio-1.0
    cpp-options:   -DTEST
    build-depends:   simple-conduit
                   , base
                   , hspec >= 1.3
                   , QuickCheck
                   , transformers
                   , mtl
                   , void
                   , containers
                   , text
                   , criterion
                   , conduit
                   , conduit-extra
                   , conduit-combinators
    ghc-options:     -Wall

source-repository head
  type:     git
  location: git://github.com/jwiegley/simple-conduit.git