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]
|
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
|
|
|
futures-executor = { workspace = true, features = [] }
|
2023-06-03 13:31:57 +02:00
|
|
|
plugin-api = { workspace = true }
|
2024-06-24 14:54:46 +02:00
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
tokio = { workspace = true, features = ["full"] }
|
2023-06-03 13:31:57 +02:00
|
|
|
tracing = { version = "0" }
|