packages feed

postgresql-simple-interpolate-0.1.1.0: postgresql-simple-interpolate.cabal

name: postgresql-simple-interpolate
version: 0.1.1.0
synopsis: Interpolated SQL queries via quasiquotation
description: Interpolated SQL queries via quasiquotation
license: BSD3
license-file: LICENSE
author: Elliot Cameron
maintainer: eacameron@gmail.com
copyright: ©2019 Elliot Cameron
homepage: https://github.com/3noch/postgresql-simple-interpolate
category: Database
build-type: Simple
cabal-version: >=1.10

source-repository head
  type: git
  location: git://github.com/3noch/postgresql-simple-interpolate.git

library
  hs-source-dirs: src
  exposed-modules:
    Database.PostgreSQL.Simple.SqlQQ.Interpolated
    Database.PostgreSQL.Simple.SqlQQ.Interpolated.Parser
  build-depends:
    base >= 4.5 && < 5,
    haskell-src-meta >= 0.6 && < 0.9,
    mtl >=2.1 && < 2.4,
    parsec ==3.1.*,
    postgresql-simple >= 0.1,
    template-haskell
  ghc-options: -Wall -O2
  default-language: Haskell2010

benchmark criterion
    hs-source-dirs: benchmarks
    main-is: Benchmarks.hs
    ghc-options: -O2 -Wall -rtsopts
    build-depends: postgresql-simple-interpolate
                 , base
                 , criterion
                 , template-haskell
    default-language:    Haskell2010
    type: exitcode-stdio-1.0