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