-
Notifications
You must be signed in to change notification settings - Fork 15
/
hasql-pool.cabal
109 lines (101 loc) · 2.33 KB
/
hasql-pool.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
cabal-version: 3.0
name: hasql-pool
version: 1.2.0.3
category: Hasql, Database, PostgreSQL
synopsis: Pool of connections for Hasql
homepage: https://github.com/nikita-volkov/hasql-pool
bug-reports: https://github.com/nikita-volkov/hasql-pool/issues
author: Nikita Volkov <[email protected]>
maintainer: Nikita Volkov <[email protected]>
copyright: (c) 2015, Nikita Volkov
license: MIT
license-file: LICENSE
extra-source-files:
CHANGELOG.md
diagrams-output/*.png
extra-doc-files:
diagrams-output/*.png
source-repository head
type: git
location: git://github.com/nikita-volkov/hasql-pool.git
common base-settings
default-language: Haskell2010
default-extensions:
ApplicativeDo
Arrows
BangPatterns
BlockArguments
ConstraintKinds
DataKinds
DefaultSignatures
DeriveDataTypeable
DeriveFoldable
DeriveFunctor
DeriveGeneric
DeriveTraversable
DerivingVia
EmptyDataDecls
FlexibleContexts
FlexibleInstances
FunctionalDependencies
GADTs
GeneralizedNewtypeDeriving
ImportQualifiedPost
LambdaCase
LiberalTypeSynonyms
MultiParamTypeClasses
MultiWayIf
NoImplicitPrelude
NoMonomorphismRestriction
NumericUnderscores
OverloadedStrings
PatternGuards
QuasiQuotes
RankNTypes
RecordWildCards
RoleAnnotations
ScopedTypeVariables
StandaloneDeriving
StrictData
TupleSections
TypeApplications
TypeFamilies
TypeOperators
library
import: base-settings
hs-source-dirs:
src/library/exposed
src/library/other
-- cabal-gild: discover src/library/exposed
exposed-modules:
Hasql.Pool
Hasql.Pool.Config
Hasql.Pool.Config.Defaults
Hasql.Pool.Observation
-- cabal-gild: discover src/library/other
other-modules:
Hasql.Pool.Config.Config
Hasql.Pool.Config.Setting
Hasql.Pool.Prelude
Hasql.Pool.SessionErrorDestructors
build-depends:
base >=4.11 && <5,
bytestring >=0.10 && <0.14,
hasql >=1.7 && <1.9,
stm >=2.5 && <3,
text >=1.2 && <3,
time >=1.9 && <2,
uuid >=1.3 && <2,
test-suite test
import: base-settings
type: exitcode-stdio-1.0
hs-source-dirs: src/test
main-is: Main.hs
ghc-options: -threaded
build-depends:
async >=2.2 && <3,
hasql,
hasql-pool,
hspec >=2.6 && <3,
random >=1.2 && <2,
rerebase >=1.15 && <2,