forked from mightybyte/snaplet-postgresql-simple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnaplet-postgresql-simple.cabal
54 lines (45 loc) · 1.79 KB
/
snaplet-postgresql-simple.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
52
53
54
name: snaplet-postgresql-simple
version: 0.4
synopsis: postgresql-simple snaplet for the Snap Framework
description: This snaplet contains support for using the Postgresql
database with a Snap Framework application via the
postgresql-simple package. It also includes an
authentication backend.
license: BSD3
license-file: LICENSE
author: Doug Beardsley
maintainer: mightybyte@gmail.com
build-type: Simple
cabal-version: >= 1.6
homepage: https://github.com/mightybyte/snaplet-postgresql-simple
category: Web, Snap
extra-source-files: LICENSE
data-files:
resources/db/devel.cfg
resources/auth/devel.cfg
source-repository head
type: git
location: https://github.com/mightybyte/snaplet-postgresql-simple.git
Library
hs-source-dirs: src
exposed-modules:
Snap.Snaplet.PostgresqlSimple
Snap.Snaplet.Auth.Backends.PostgresqlSimple
other-modules:
Paths_snaplet_postgresql_simple
build-depends:
base >= 4 && < 5,
bytestring >= 0.9.1 && < 0.11,
clientsession >= 0.7.2 && < 0.10,
configurator >= 0.2 && < 0.3,
errors >= 1.4 && < 1.5,
MonadCatchIO-transformers >= 0.3 && < 0.4,
mtl >= 2 && < 3,
postgresql-simple >= 0.3 && < 0.4,
resource-pool-catchio >= 0.2 && < 0.3,
snap >= 0.10 && < 0.14,
text >= 0.11.2 && < 0.12,
transformers >= 0.2 && < 0.4,
unordered-containers >= 0.2 && < 0.3
ghc-options: -Wall -fwarn-tabs -funbox-strict-fields
-fno-warn-orphans -fno-warn-unused-do-bind