-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtemplatepg.cabal
51 lines (49 loc) · 1.63 KB
/
templatepg.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
44
45
46
47
48
49
50
51
Name: templatepg
Version: 0.2.8
Cabal-Version: >= 1.6
License: MIT
License-File: LICENSE
Copyright: 2010, 2011, 2012, 2013, 2015 Chris Forno
Author: Chris Forno (jekor)
Maintainer: [email protected]
Stability: alpha
Bug-Reports: https://github.com/jekor/templatepg/issues
Homepage: https://github.com/jekor/templatepg
Package-URL: https://github.com/jekor/templatepg/archive/master.tar.gz
Category: Database
Synopsis: A PostgreSQL access library with compile-time SQL type inference
Description: TemplatePG provides PostgreSQL access from Haskell via the
PostgreSQL protocol. It also provides a higher-level Template
Haskell interface. It eliminates a class of runtime errors by
checking queries against a PostgreSQL database at compile-time.
This also reduces boilerplate code for dealing with query
results, as the type and number of result columns are known at
compile-time.
Tested-With: GHC == 7.10.2
Build-Type: Simple
source-repository head
type: git
location: git://github.com/jekor/templatepg.git
Library
Build-Depends:
base >= 4.8 && < 4.9,
binary,
bytestring,
haskell-src-meta,
mtl,
network,
parsec,
regex-compat,
regex-posix,
template-haskell,
time,
utf8-string
Exposed-Modules:
Database.TemplatePG
Database.TemplatePG.Protocol
Database.TemplatePG.SQL
Database.TemplatePG.Types
Extensions: DeriveDataTypeable,
ExistentialQuantification,
TemplateHaskell
GHC-Options: -Wall -fno-warn-type-defaults