packages feed

pipes-postgresql-simple-0.1.1.1: pipes-postgresql-simple.cabal

name: pipes-postgresql-simple
version: 0.1.1.1
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

Source-Repository head
    Type: git
    Location: https://github.com/ocharles/pipes-postgresql-simple

library
  exposed-modules:     Pipes.PostgreSQL.Simple
                       Pipes.PostgreSQL.Simple.SafeT
  build-depends:       base              >=4.5 && < 5,
                       async             >=2.0       ,
                       exceptions,
                       mtl               >=2.1       ,
                       bytestring        >=0.9       ,
                       text              >=0.11      ,
                       pipes             >=3.3       ,
                       pipes-safe                    ,
                       postgresql-simple >=0.3.4     ,
                       pipes-concurrency >=1.1       ,
                       transformers      >=0.3       ,
                       stm >=2.4
  hs-source-dirs:      src
  GHC-Options: -O2 -Wall