forked from nikita-volkov/hasql-pool
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhasql-resource-pool.cabal
63 lines (58 loc) · 2.64 KB
/
hasql-resource-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
name: hasql-resource-pool
version: 0.6.0.0
category: Hasql, Database, PostgreSQL
synopsis: A pool of connections for Hasql based on resource-pool.
description: This package is originally derived from hasql-pool v0.5.2.2 and continues using `resource-pool` for its pool implementation.
homepage: https://github.com/avanov/hasql-resource-pool
bug-reports: https://github.com/avanov/hasql-resource-pool/issues
author: Nikita Volkov <nikita.y.volkov@mail.ru>
maintainer: Maxim Avanov <maxim.avanov@gmail.com>
copyright: (c) 2023, Maxim Avanov
license: MIT
license-file: LICENSE
build-type: Simple
cabal-version: >=1.10
extra-source-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: git://github.com/avanov/hasql-resource-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
Hasql.Pool.Observer
other-modules:
Hasql.Pool.Prelude
build-depends:
-- resources:
resource-pool >= 0.4.0.0,
-- database:
hasql >= 1.6.3,
-- data:
time >= 1.5 && < 2,
clock >= 0.8,
-- general:
base-prelude >= 1 && < 2
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
build-depends:
base-prelude,
hasql,
hasql-resource-pool,
hspec >= 2.6 && < 3