20 lines
514 B
TOML
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" }
|