name: pipes-postgresql-simple version: 0.1.0.0 synopsis: Convert various postgresql-simple calls to work with pipes description: This library provides a few Producers and Consumers that allow @postgresql-simple@ calls to be made within the @pipes@ framework. Currently, there is support for: . * Streaming queries . * Streaming entire tables to and from a @ByteString@. license: MIT license-file: LICENSE author: Oliver Charles maintainer: ollie@ocharles.org.uk copyright: Oliver Charles 2013 category: Database, Pipes build-type: Simple cabal-version: >=1.8 library exposed-modules: Pipes.PostgreSQL.Simple build-depends: base >=4.5 && < 5, async >=2.0 , mtl >=2.1 , bytestring >=0.9 , text >=0.11 , pipes >=3.3 , postgresql-simple >=0.3.4 , pipes-concurrency >=1.1 , transformers >=0.3 , stm >=2.4 hs-source-dirs: src GHC-Options: -O2 -Wall