packages feed

sql-simple-0.2.0: sql-simple.cabal

name:                sql-simple
version:             0.2.0
synopsis:            common middle-level sql client.
description:         please read README.md <https://github.com/philopon/sql-simple/blob/master/README.md>
license:             MIT
license-file:        LICENSE
author:              HirotomoMoriwaki<philopon.dependence@gmail.com>
maintainer:          HirotomoMoriwaki<philopon.dependence@gmail.com>
Homepage:            https://github.com/philopon/sql-simple
Bug-reports:         https://github.com/philopon/sql-simple/issues
copyright:           (c) 2014 Hirotomo Moriwaki
category:            Database
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  exposed-modules:     Database.Sql.Simple
                       Database.Sql.Simple.Internal
  build-depends:       base                 >=4.6 && <4.8
                     , exceptions           >=0.6 && <0.7
                     , text                 >=1.1 && <1.2
                     , transformers         >=0.4 && <0.5
                     , unordered-containers >=0.2 && <0.3

  if impl(ghc < 7.8)
    build-depends:     tagged               >=0.7 && <0.8

  ghc-options:         -Wall -O2
  default-language:    Haskell2010