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