-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathresource-pool.cabal
More file actions
55 lines (44 loc) · 1.58 KB
/
resource-pool.cabal
File metadata and controls
55 lines (44 loc) · 1.58 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
cabal-version: 3.0
build-type: Simple
name: resource-pool
version: 0.5.0.0
license: BSD-3-Clause
license-file: LICENSE
category: Data, Database, Network
maintainer: andrzej@rybczak.net
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.10.7, 9.0.2, 9.2.8, 9.4.8, 9.6.7, 9.8.4, 9.10.2, 9.12.2 }
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.14 && < 5
, hashable >= 1.1.0.0
, primitive >= 0.7
, stm
, text
, time
ghc-options: -Wall
-Wcompat
-Wmissing-deriving-strategies
-Werror=prepositive-qualified-module
default-language: Haskell2010
default-extensions: DeriveGeneric
, DerivingStrategies
, ImportQualifiedPost
, LambdaCase
, RankNTypes
, ScopedTypeVariables
, TypeApplications