-
Notifications
You must be signed in to change notification settings - Fork 2
/
wai-session-postgresql.cabal
55 lines (52 loc) · 1.94 KB
/
wai-session-postgresql.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
55
name: wai-session-postgresql
version: 0.2.1.3
synopsis: PostgreSQL backed Wai session store
description: Provides a PostgreSQL backed session store for the Network.Wai.Session interface.
homepage: https://github.com/hce/postgresql-session#readme
bug-reports: https://github.com/hce/postgresql-session/issues
license: BSD3
license-file: LICENSE
author: Hans-Christian Esperer <[email protected]>
maintainer: Hans-Christian Esperer <[email protected]>
copyright: 2015 Hans-Christian Esperer
stability: experimental
tested-with: GHC == 8.1
category: Web
build-type: Simple
cabal-version: >=1.10
extra-source-files: changelog.md
library
hs-source-dirs: src
exposed-modules: Network.Wai.Session.PostgreSQL
build-depends: base >= 4.5 && < 5
, bytestring
, cereal
, cookie
, data-default
, entropy
, postgresql-simple
, resource-pool
, text
, time
, transformers
, wai
, wai-session
default-language: Haskell2010
default-extensions: OverloadedStrings
test-suite postgresql-session-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, bytestring
, data-default
, postgresql-simple
, text
, wai-session
, wai-session-postgresql
, hspec
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/hce/postgresql-session