-
Notifications
You must be signed in to change notification settings - Fork 11
/
resource-pool.cabal
48 lines (37 loc) · 1.31 KB
/
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
cabal-version: 2.4
build-type: Simple
name: resource-pool
version: 0.4.0.0
license: BSD-3-Clause
license-file: LICENSE
category: Data, Database, Network
maintainer: [email protected]
author: Andrzej Rybczak, Bryan O'Sullivan
synopsis: A high-performance striped resource pooling implementation
description: A high-performance striped pooling abstraction for managing
flexibly-sized collections of resources such as database
connections.
tested-with: GHC ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.5
|| ==9.4.3
extra-doc-files:
CHANGELOG.md
README.md
bug-reports: https://github.com/scrive/pool/issues
source-repository head
type: git
location: https://github.com/scrive/pool.git
library
hs-source-dirs: src
exposed-modules: Data.Pool
Data.Pool.Internal
Data.Pool.Introspection
build-depends: base >= 4.11 && < 5
, hashable >= 1.1.0.0
, primitive >= 0.7
, time
ghc-options: -Wall -Wcompat
default-language: Haskell2010
default-extensions: DeriveGeneric
, LambdaCase
, RankNTypes
, TypeApplications