[package]
edition = "2021"
name = "fondue"
version = "0.1.1"
authors = ["Blake Park <blake.r.park@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust caching library with TTL, LRU, and namespace support."
documentation = "https://docs.rs/fondue"
readme = "README.md"
keywords = [
"cache",
"caching",
"ttl",
"lru",
"concurrency",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ParkBlake/fondue"
[features]
async = ["tokio"]
default = []
[lib]
name = "fondue"
path = "src/lib.rs"
[dependencies.dashmap]
version = "5.5"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.0"
features = ["time"]
optional = true