[package]
name = "secra-memory"
version = "0.1.1"
edition = "2021"
authors = ["Secra Team"]
description = "A unified memory cache management library for plugin systems, built on top of moka"
license = "MIT OR Apache-2.0"
keywords = ["cache", "memory", "plugin", "moka", "async"]
categories = ["caching", "asynchronous", "concurrency"]
readme = "README.md"
documentation = "https://docs.rs/secra-memory"
[lib]
name = "secra_memory"
path = "src/lib.rs"
[dependencies]
async-trait = "0.1"
moka = { version = "0.12", features = ["future"] }
tokio = { version = "1", features = ["rt", "sync", "macros"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tracing = "0.1"
rand = "0.8"
dashmap = "5.5"
futures = "0.3"