deadpool-redis 0.23.1

Dead simple async pool for redis
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"
rust-version = "1.88"
name = "deadpool-redis"
version = "0.23.1"
authors = [
    "Michael P. Jung <michael.jung@terreon.de>",
    "Subeom Choi <subumm1@gmail.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Dead simple async pool for redis"
readme = "README.md"
keywords = [
    "async",
    "redis",
    "pool",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/deadpool-rs/deadpool"

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

[features]
acl = ["redis/acl"]
ahash = ["redis/ahash"]
bigdecimal = ["redis/bigdecimal"]
bloom = ["redis/bloom"]
cache-aio = ["redis/cache-aio"]
cluster = ["redis/cluster-async"]
cluster-async = ["cluster"]
connection-manager = ["redis/connection-manager"]
default = ["rt_tokio_1"]
entra-id = ["redis/entra-id"]
geospatial = ["redis/geospatial"]
json = ["redis/json"]
num-bigint = ["redis/num-bigint"]
rt_smol_2 = [
    "deadpool/rt_smol_2",
    "smol-comp",
]
rt_tokio_1 = [
    "deadpool/rt_tokio_1",
    "tokio-comp",
]
rust_decimal = ["redis/rust_decimal"]
script = ["redis/script"]
search_unfinished = ["redis/search_unfinished"]
sentinel = [
    "redis/sentinel",
    "dep:tokio",
    "tokio/sync",
]
serde = [
    "deadpool/serde",
    "dep:serde",
]
smol-comp = ["redis/smol-comp"]
smol-native-tls-comp = ["redis/smol-native-tls-comp"]
smol-rustls-comp = ["redis/smol-rustls-comp"]
streams = ["redis/streams"]
tls-native-tls = ["redis/tls-native-tls"]
tls-rustls = ["redis/tls-rustls"]
tls-rustls-insecure = ["redis/tls-rustls-insecure"]
tls-rustls-webpki-roots = ["redis/tls-rustls-webpki-roots"]
token-based-authentication = ["redis/token-based-authentication"]
tokio-comp = ["redis/tokio-comp"]
tokio-native-tls-comp = ["redis/tokio-native-tls-comp"]
tokio-rustls-comp = ["redis/tokio-rustls-comp"]
uuid = ["redis/uuid"]
vector-sets = ["redis/vector-sets"]

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

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

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

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

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

[dependencies.deadpool]
version = "0.13.1"
features = ["managed"]
default-features = false

[dependencies.redis]
version = "1.6"
features = ["aio"]
default-features = false

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
package = "serde"

[dependencies.tokio]
version = "1.6"
optional = true
default-features = false

[dev-dependencies.config]
version = "0.15"
features = ["json"]

[dev-dependencies.dotenvy]
version = "0.15.0"

[dev-dependencies.futures]
version = "0.3.15"

[dev-dependencies.redis]
version = "1"
features = ["tokio-comp"]
default-features = false

[dev-dependencies.tokio]
version = "1.6"
features = [
    "macros",
    "rt-multi-thread",
    "sync",
]