pg-pool 0.4.0

Async PostgreSQL connection pool built on pg-wired.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.85"
name = "pg-pool"
version = "0.4.0"
authors = ["Josh Burgess <joshualoganburgess@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async PostgreSQL connection pool built on pg-wired."
homepage = "https://github.com/joshburgess/resolute"
documentation = "https://docs.rs/pg-pool"
readme = "README.md"
keywords = [
    "postgres",
    "postgresql",
    "pool",
    "connection-pool",
    "async",
]
categories = [
    "database",
    "asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/joshburgess/resolute"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = ["wire"]
wire = ["pg-wired"]

[lib]
name = "pg_pool"
path = "src/lib.rs"

[[example]]
name = "pool_lifecycle"
path = "examples/pool_lifecycle.rs"

[[test]]
name = "conn_pool_test"
path = "tests/conn_pool_test.rs"

[[test]]
name = "pool_test"
path = "tests/pool_test.rs"

[[test]]
name = "waiter_provisioning_test"
path = "tests/waiter_provisioning_test.rs"

[dependencies.bytes]
version = "1"

[dependencies.pg-wired]
version = "0.4.0"
optional = true

[dependencies.tokio]
version = "1"
features = [
    "sync",
    "rt",
    "macros",
    "time",
]

[dependencies.tracing]
version = "0.1"

[dev-dependencies.bytes]
version = "1"

[dev-dependencies.pg-wired]
version = "0.4.0"

[dev-dependencies.tokio]
version = "1"
features = ["full"]