bazzar/crates/cache-redis-plugin/Cargo.toml

22 lines
549 B
TOML
Raw Normal View History

2023-06-01 10:41:58 +02:00
[package]
name = "cache-adapter-redis"
version = "0.1.0"
edition = "2021"
2023-06-03 13:31:57 +02:00
[lib]
crate-type = ["cdylib"]
path = "src/lib.rs"
2023-06-01 10:41:58 +02:00
[dependencies]
2024-06-24 14:54:46 +02:00
async-trait = { workspace = true }
bincode = { workspace = true }
2023-06-03 13:31:57 +02:00
cache-adapter = { path = "../cache-adapter" }
chrono = { version = "0.4.26" }
2024-06-24 14:54:46 +02:00
deadpool = { workspace = true }
2023-06-01 10:41:58 +02:00
futures = { version = "0.3.28" }
2024-06-24 14:54:46 +02:00
redis = { workspace = true }
redis-async-pool = { workspace = true }
serde = { workspace = true, features = ["derive"] }
tokio = { workspace = true, features = ["full"] }
2023-06-03 13:31:57 +02:00
tracing = { version = "0" }