packages feed

pgsql-simple-0.1.1: pgsql-simple.cabal

name:           pgsql-simple
version:        0.1.1
homepage:       https://github.com/chrisdone/pgsql-simple
bug-reports:    https://github.com/chrisdone/pgsql-simple/issues
synopsis:       A mid-level PostgreSQL client library.
description:    
    A mid-level client library for the PostgreSQL database, intended to be
    fast and easy to use.
license:        BSD3
license-file:   LICENSE
author:         Chris Done <chrisdone@gmail.com>, Bryan O'Sullivan <bos@mailrank.com>
maintainer:     Chris Done <chrisdone@gmail.com>
copyright:      2011 Chris Done, 2011 MailRank, Inc.
category:       Database
build-type:     Simple
cabal-version:  >= 1.6
extra-source-files:
    README.markdown

library
  exposed-modules:
    Database.PostgreSQL.Simple
    Database.PostgreSQL.Simple.Param
    Database.PostgreSQL.Simple.QueryParams
    Database.PostgreSQL.Simple.QueryResults
    Database.PostgreSQL.Simple.Result
    Database.PostgreSQL.Simple.Types
    Database.PostgreSQL.Base
    Database.PostgreSQL.Base.Types

  build-depends:
    attoparsec >= 0.8.5.3,
    base < 5,
    base16-bytestring,
    blaze-builder,
    blaze-textual,
    bytestring >= 0.9,
    pcre-light,
    old-locale,
    text >= 0.11.0.2,
    time,
    network >= 2.2,
    binary >= 0.5,
    mtl >= 2.0,
    MonadCatchIO-transformers,
    utf8-string,
    containers >= 0.5

  ghc-options: -Wall -O2
  if impl(ghc >= 6.8)
    ghc-options: -fwarn-tabs

source-repository head
  type:     git
  location: http://github.com/chrisdone/pgsql-simple