bazzar/crates/cache-redis-plugin/Cargo.toml
2023-06-03 13:31:57 +02:00

22 lines
627 B
TOML

[package]
name = "cache-adapter-redis"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
path = "src/lib.rs"
[dependencies]
async-trait = { version = "0.1.68" }
bincode = { version = "1" }
cache-adapter = { path = "../cache-adapter" }
chrono = { version = "0.4.26" }
deadpool = { version = "0.9.5" }
futures = { version = "0.3.28" }
redis = { version = "0.23.0" }
redis-async-pool = { git = "https://github.com/Eraden/redis-async-pool.git", branch = "upgrade-dependencies" }
serde = { version = "1.0.163", features = ['derive'] }
tokio = { version = "1.28.2", features = ['full'] }
tracing = { version = "0" }