-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathresource-pool.cabal
More file actions
85 lines (68 loc) · 2.34 KB
/
Copy pathresource-pool.cabal
File metadata and controls
85 lines (68 loc) · 2.34 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
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
cabal-version: 3.0
build-type: Simple
name: resource-pool
version: 0.5.0.1
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.3, 9.12.4, 9.14.1 }
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
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends: base
, async
, resource-pool
, stm
, tasty
, tasty-hunit
, text
ghc-options: -Wall
-Wcompat
-Wmissing-deriving-strategies
-Werror=prepositive-qualified-module
-threaded
-rtsopts
"-with-rtsopts=-N4"
default-language: Haskell2010
default-extensions: DerivingStrategies
, ImportQualifiedPost
, LambdaCase
, ScopedTypeVariables
, TypeApplications