[dependencies.async-trait]
version = "0.1.89"
[dependencies.crossbeam-queue]
version = "0.3.12"
[dependencies.parking_lot]
version = "0.12.5"
[dependencies.redis]
features = ["aio", "tokio-comp"]
version = "1.0.0"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.tokio]
features = ["sync"]
version = "1.48.0"
[dependencies.tracing]
version = "0.1.43"
[dev-dependencies.anyhow]
version = "1.0"
[dev-dependencies.futures]
version = "0.3.31"
[dev-dependencies.serial_test]
version = "3.2.0"
[dev-dependencies.testcontainers]
version = "0.14.0"
[dev-dependencies.tokio]
features = ["rt-multi-thread", "macros", "process"]
version = "1.48.0"
[features]
cluster = ["redis/cluster-async"]
[lib]
name = "redis_pool"
path = "src/lib.rs"
[package]
authors = ["Andrew Wheeler <genusistimelord@gmail.com>", "Wil Gaboury"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Library to Provide a redis client and cluster client pools."
edition = "2021"
keywords = ["Redis", "Pool", "tokio"]
license = "MIT OR Apache-2.0"
name = "redis_pool"
readme = "README.md"
repository = "https://github.com/AscendingCreations/RedisPool"
version = "0.10.0"
[[test]]
name = "cluster"
path = "tests/cluster.rs"
[[test]]
name = "pool"
path = "tests/pool.rs"
[[test]]
name = "pubsub"
path = "tests/pubsub.rs"