22 lines
549 B
TOML
22 lines
549 B
TOML
[package]
|
|
name = "cache-adapter-redis"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
async-trait = { workspace = true }
|
|
bincode = { workspace = true }
|
|
cache-adapter = { path = "../cache-adapter" }
|
|
chrono = { version = "0.4.26" }
|
|
deadpool = { workspace = true }
|
|
futures = { version = "0.3.28" }
|
|
redis = { workspace = true }
|
|
redis-async-pool = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
tracing = { version = "0" }
|