-
Notifications
You must be signed in to change notification settings - Fork 2
/
postgresql-simple-interpolate.cabal
43 lines (40 loc) · 1.2 KB
/
postgresql-simple-interpolate.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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