# 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" name = "redust" version = "0.4.0" description = "A simple Redis client for Rust." readme = "README.md" keywords = ["redis"] license = "MIT" repository = "https://github.com/appellation/redust" [package.metadata.docs.rs] all-features = true [[test]] name = "pool" path = "tests/pool.rs" required-features = ["pool"] [[test]] name = "script" path = "tests/script.rs" required-features = ["script"] [dependencies.async-trait] version = "0.1" optional = true [dependencies.bytes] version = "1.1" [dependencies.deadpool] version = "0.9" optional = true [dependencies.futures] version = "0.3" [dependencies.pin-project-lite] version = "0.2" [dependencies.redust-resp] version = "0.2" features = ["codec"] [dependencies.serde] version = "1.0" features = ["derive"] optional = true [dependencies.serde_bytes] version = "0.11" optional = true [dependencies.tokio] version = "1.18" features = ["net"] [dependencies.tokio-util] version = "0.7" features = ["codec"] [dependencies.tracing] version = "0.1" [dev-dependencies.lazy_static] version = "1.4" [dev-dependencies.test-log] version = "0.2" features = ["trace"] default-features = false [dev-dependencies.tokio] version = "1.18" features = [ "macros", "rt-multi-thread", ] [dev-dependencies.tokio-test] version = "0.4" [dev-dependencies.tracing-subscriber] version = "0.3" features = [ "env-filter", "fmt", ] default-features = false [features] command = [ "async-trait", "model", ] model = [ "serde", "serde_bytes", ] pool = [ "async-trait", "deadpool", ] script = ["serde_bytes"]