-
-
Notifications
You must be signed in to change notification settings - Fork 422
Expand file tree
/
Copy pathdb-postgres-pool.cabal
More file actions
31 lines (30 loc) · 1.2 KB
/
db-postgres-pool.cabal
File metadata and controls
31 lines (30 loc) · 1.2 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
cabal-version: 2.2
name: cookbook-db-postgres-pool
version: 0.1
synopsis: Simple PostgreSQL connection pool cookbook example
homepage: http://docs.servant.dev/
license: BSD-3-Clause
license-file: ../../../servant/LICENSE
author: Servant Contributors
maintainer: haskell-servant-maintainers@googlegroups.com
build-type: Simple
executable cookbook-db-postgres-pool
main-is: PostgresPool.lhs
build-depends: base == 4.*
, bytestring >= 0.11
, text >= 1.2
, aeson >= 2.2
, servant
, servant-client
, servant-server
, warp >= 3.4.9
, wai >= 3.2
, http-types >= 0.12
, markdown-unlit >= 0.5.1
, http-client >= 0.7.19
, postgresql-simple >= 0.7
, resource-pool >= 0.5
, transformers
default-language: GHC2021
ghc-options: -Wall -pgmL markdown-unlit
build-tool-depends: markdown-unlit:markdown-unlit