[dependencies.async-trait]
version = "0.1.81"
[dependencies.crossbeam-queue]
version = "0.3.11"
[dependencies.redis]
features = ["aio", "tokio-comp"]
version = "0.26.1"
[dependencies.thiserror]
version = "1.0.63"
[dependencies.tokio]
features = ["sync"]
version = "1.39.3"
[dependencies.tracing]
version = "0.1.40"
[dev-dependencies.anyhow]
version = "1.0"
[dev-dependencies.axum]
version = "0.7"
[dev-dependencies.futures]
version = "0.3.30"
[dev-dependencies.serial_test]
version = "0.4"
[dev-dependencies.testcontainers]
version = "0.14.0"
[dev-dependencies.tokio]
features = ["rt-multi-thread", "macros", "process"]
version = "1.39.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
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.5.1"
[[test]]
name = "cluster"
path = "tests/cluster.rs"
[[test]]
name = "pool"
path = "tests/pool.rs"
[[test]]
name = "pubsub"
path = "tests/pubsub.rs"