bazzar/crates/cache-embedded-memory-plugin/Cargo.toml
2024-06-24 14:54:46 +02:00

20 lines
514 B
TOML

[package]
name = "cache-adapter-embedded-memory"
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" }
futures-executor = { workspace = true, features = [] }
plugin-api = { workspace = true }
serde = { workspace = true, features = ["derive"] }
tokio = { workspace = true, features = ["full"] }
tracing = { version = "0" }