cache-rs 0.1.0

A high-performance, memory-efficient cache implementation supporting multiple eviction policies including LRU, LFU, LFUDA, SLRU and GDSF
Documentation
[[bench]]
name = "cache_benchmarks"
path = "benches/cache_benchmarks.rs"

[[bench]]
harness = false
name = "criterion_benchmarks"
path = "benches/criterion_benchmarks.rs"

[dependencies.hashbrown]
optional = true
version = "0.13.2"

[dev-dependencies.criterion]
version = "0.5.1"

[dev-dependencies.scoped_threadpool]
version = "0.1.*"

[dev-dependencies.stats_alloc]
version = "0.1.*"

[[example]]
name = "cache_comparison"
path = "examples/cache_comparison.rs"

[[example]]
name = "metrics_demo"
path = "examples/metrics_demo.rs"

[features]
default = ["hashbrown"]
nightly = ["hashbrown/nightly"]
std = []

[lib]
name = "cache_rs"
path = "src/lib.rs"

[package]
authors = ["sigsegved"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["caching", "no-std"]
description = "A high-performance, memory-efficient cache implementation supporting multiple eviction policies including LRU, LFU, LFUDA, SLRU and GDSF"
documentation = "https://docs.rs/cache-rs"
edition = "2021"
exclude = ["/.github", "/.gitignore"]
homepage = "https://github.com/sigsegved/cache-rs"
keywords = ["cache", "eviction", "lru", "memory", "data-structures"]
license = "MIT"
name = "cache-rs"
readme = "README.md"
repository = "https://github.com/sigsegved/cache-rs"
rust-version = "1.74.0"
version = "0.1.0"

[[test]]
name = "no_std_tests"
path = "tests/no_std_tests.rs"