connection-pool 0.3.7

A high-performance, generic async connection pool for Rust with background cleanup and comprehensive logging
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 = "2024"
name = "connection-pool"
version = "0.3.7"
authors = ["ssrlive"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance, generic async connection pool for Rust with background cleanup and comprehensive logging"
homepage = "https://github.com/ssrlive/connection-pool"
documentation = "https://docs.rs/connection-pool"
readme = "README.md"
keywords = [
    "async",
    "connection-pool",
    "tokio",
    "generic",
    "pool",
]
categories = [
    "asynchronous",
    "network-programming",
    "database",
]
license = "MIT"
repository = "https://github.com/ssrlive/connection-pool"

[package.metadata.docs.rs]
all-features = true

[features]
tcp = []

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

[[example]]
name = "background_cleanup_example"
path = "examples/background_cleanup_example.rs"
required-features = ["tcp"]

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

[[example]]
name = "echo_example"
path = "examples/echo_example.rs"
required-features = ["tcp"]

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

[dependencies.log]
version = "0.4.27"

[dependencies.tokio]
version = "1.47.1"
features = ["full"]

[dev-dependencies.env_logger]
version = "0.11.8"