packages feed

pipes-mongodb-0.1.0.0: pipes-mongodb.cabal

name:                pipes-mongodb
version:             0.1.0.0
synopsis:            Stream results from MongoDB
description:         Stream results from MongoDB

homepage:            http://github.com/jb55/pipes-mongodb
license:             MIT
license-file:        LICENSE
author:              William Casarin
maintainer:          bill@casarin.me

category:            Database
build-type:          Simple
cabal-version:       >=1.10

source-repository head
  type: git
  location: https://github.com/jb55/pipes-mongodb

library
  exposed-modules: Pipes.MongoDB
  default-language: Haskell98
  build-depends: base >=4.5 && < 5
               , mongoDB
               , monad-control
               , pipes

Test-Suite test-pipes-mongodb
    type:       exitcode-stdio-1.0
    main-is:    test/Test.hs
    build-depends: base
                 , text
                 , mongoDB
                 , monad-control
                 , pipes