[package]
edition = "2024"
name = "omega-cache"
version = "0.3.1"
authors = ["Dmitrii Antonov"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance, concurrent cache for Rust with lock-free slot management and pluggable eviction policies."
homepage = "https://github.com/dmitriiantonov/omega-cache"
documentation = "https://docs.rs/omega-cache"
readme = "README.md"
keywords = [
"cache",
"concurrent",
"lock-free",
"s3fifo",
"lru",
]
categories = [
"caching",
"concurrency",
]
license = "MIT"
repository = "https://github.com/dmitriiantonov/omega-cache"
[features]
performance = []
[lib]
name = "omega_cache"
path = "src/lib.rs"
[[test]]
name = "performance"
path = "tests/performance.rs"
[dependencies.bytes]
version = "1.11.1"
[dependencies.crossbeam]
version = "0.8.4"
[dependencies.crossbeam-epoch]
version = "0.9.18"
[dependencies.dashmap]
version = "7.0.0-rc2"
[dependencies.fastrand]
version = "2.3.0"
[dependencies.hdrhistogram]
version = "7.5.4"
[dependencies.omega-cache-macros]
version = "0.3.1"
[dependencies.rand]
version = "0.10.0"
[dependencies.rand_distr]
version = "0.6.0"
[dependencies.thread_local]
version = "1.1.9"
[dependencies.twox-hash]
version = "2.1.2"