This repository has been archived by the owner on Sep 1, 2022. It is now read-only.
forked from nikita-volkov/hasql-pool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hasql-pool.cabal
76 lines (70 loc) · 2.39 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
name:
hasql-pool
version:
0.7.2
category:
Hasql, Database, PostgreSQL
synopsis:
A 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
build-type:
Simple
cabal-version:
>=1.10
extra-source-files:
CHANGELOG.md
source-repository head
type:
git
location:
git://github.com/nikita-volkov/hasql-pool.git
library
hs-source-dirs:
library
ghc-options:
default-extensions:
Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples
default-language:
Haskell2010
exposed-modules:
Hasql.Pool
other-modules:
Hasql.Pool.Prelude
build-depends:
base >=4.11 && <5,
hasql >=1.3 && <1.6,
stm >=2.5 && <3,
time >=1.5 && <2,
transformers >=0.5 && <0.7
test-suite test
type:
exitcode-stdio-1.0
hs-source-dirs:
test
main-is:
Main.hs
default-extensions:
Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples
default-language:
Haskell2010
ghc-options: -threaded
build-depends:
hasql,
hasql-pool,
async,
hspec >=2.6 && <3,
rerebase >=1.15 && <2,
stm >=2.5 && <3