[package]
edition = "2021"
rust-version = "1.82.0"
name = "redis-oxide"
version = "0.2.4"
authors = ["Nghia Pham <nghiaphamln3@gmail.com>"]
build = false
include = [
"src/**/*",
"benches/**/*",
"tests/**/*",
"examples/**/*",
"Cargo.toml",
"../README.md",
"../docs/**/*",
"../LICENSE-MIT",
"../LICENSE-APACHE",
"../CHANGELOG.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance async Redis client for Rust with automatic cluster support, multiplexing, and advanced features"
homepage = "https://github.com/nghiaphamln/redis-oxide"
documentation = "https://docs.rs/redis-oxide"
readme = "README.md"
keywords = [
"redis",
"async",
"cluster",
"cache",
"database",
]
categories = [
"database",
"asynchronous",
"network-programming",
]
license = "MIT"
repository = "https://github.com/nghiaphamln/redis-oxide"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
targets = [
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
"x86_64-apple-darwin",
]
[lib]
name = "redis_oxide"
path = "src/lib.rs"
[[example]]
name = "advanced_test"
path = "examples/advanced_test.rs"
[[example]]
name = "basic_test"
path = "examples/basic_test.rs"
[[example]]
name = "comprehensive_demo"
path = "examples/comprehensive_demo.rs"
[[example]]
name = "performance_demo"
path = "examples/performance_demo.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "test_data_types"
path = "tests/test_data_types.rs"
[[test]]
name = "test_pipeline"
path = "tests/test_pipeline.rs"
[[test]]
name = "test_resp3_protocol"
path = "tests/test_resp3_protocol.rs"
[[test]]
name = "test_scripting"
path = "tests/test_scripting.rs"
[[test]]
name = "test_simple_integration"
path = "tests/test_simple_integration.rs"
[[test]]
name = "test_streams"
path = "tests/test_streams.rs"
[[test]]
name = "test_transactions_pipelines"
path = "tests/test_transactions_pipelines.rs"
[[bench]]
name = "comprehensive_bench"
path = "benches/comprehensive_bench.rs"
[[bench]]
name = "optimization_comparison"
path = "benches/optimization_comparison.rs"
[[bench]]
name = "protocol_bench"
path = "benches/protocol_bench.rs"
harness = false
[[bench]]
name = "simple_bench"
path = "benches/simple_bench.rs"
[dependencies.async-trait]
version = "0.1.83"
[dependencies.bytes]
version = "1.8"
[dependencies.crc16]
version = "0.4.0"
[dependencies.deadpool]
version = "0.12.1"
[dependencies.futures-util]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.itoa]
version = "1.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.sha1]
version = "0.10"
[dependencies.socket2]
version = "0.6.1"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.41"
features = ["full"]
[dependencies.tracing]
version = "0.1.41"
[dev-dependencies.criterion]
version = "0.7.0"
[dev-dependencies.futures]
version = "0.3"
[dev-dependencies.tokio-test]
version = "0.4.4"
[dev-dependencies.tracing-subscriber]
version = "0.3.18"
[lints.clippy]
all = "warn"
nursery = "warn"
pedantic = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"