bazzar/crates/cache-embedded-memory-plugin/Cargo.toml

20 lines
520 B
TOML
Raw Normal View History

2023-06-01 10:41:58 +02:00
[package]
name = "cache-adapter-embedded-memory"
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]
async-trait = { version = "0.1.68" }
bincode = { version = "1" }
2023-06-03 13:31:57 +02:00
cache-adapter = { path = "../cache-adapter" }
chrono = { version = "0.4.26" }
2023-06-01 10:41:58 +02:00
futures-executor = { version = "0.3.28", features = [] }
2023-06-03 13:31:57 +02:00
plugin-api = { workspace = true }
serde = { version = "1.0.163", features = ['derive'] }
2023-06-01 10:41:58 +02:00
tokio = { version = "1.28.2", features = ['full'] }
2023-06-03 13:31:57 +02:00
tracing = { version = "0" }