-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsnaplet-persistent.cabal
More file actions
73 lines (61 loc) · 2.11 KB
/
snaplet-persistent.cabal
File metadata and controls
73 lines (61 loc) · 2.11 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: snaplet-persistent
version: 0.7.1
synopsis: persistent snaplet for the Snap Framework
description: Snaplet support for using the Postgresql database
with a Snap Framework application via the persistent
package. It also includes an authentication backend.
license: BSD3
license-file: LICENSE
author: Soostone Inc. Ozgun Ataman, Doug Beardsley
maintainer: ozataman@gmail.com, mightybyte@gmail.com
build-type: Simple
cabal-version: >= 1.10
homepage: https://github.com/soostone/snaplet-persistent
category: Web, Snap
extra-source-files: LICENSE,
CHANGELOG.md
data-files:
schema.txt
resources/db/devel.cfg
resources/auth/devel.cfg
source-repository head
type: git
location: https://github.com/soostone/snaplet-persistent.git
flag lib-Werror
default: False
manual: True
Library
hs-source-dirs: src
default-language: Haskell2010
exposed-modules:
Snap.Snaplet.Persistent
Snap.Snaplet.Auth.Backends.Persistent
other-modules:
Snap.Snaplet.Auth.Backends.Persistent.Types
Paths_snaplet_persistent
build-depends:
base >= 4 && < 5,
bytestring >= 0.9.1,
clientsession >= 0.7.2,
configurator >= 0.2,
heist >= 0.14,
lens >= 3.7.6,
errors >= 1.4,
monad-logger >= 0.2.4,
mtl >= 2,
persistent >= 2.13,
persistent-postgresql >= 2.13,
readable >= 0.1,
resource-pool >= 0.2,
resourcet >= 0.4,
safe >= 0.3,
snap >= 0.13,
text >= 0.11,
time >= 1.1,
transformers >= 0.2,
unordered-containers >= 0.2,
map-syntax
ghc-options: -Wall -fwarn-tabs -funbox-strict-fields
-fno-warn-orphans -fno-warn-unused-do-bind
if flag(lib-Werror)
ghc-options: -Werror