quick_cache 0.5.2

Lightweight and high performance concurrent cache
Documentation
[[bench]]
harness = false
name = "benchmarks"
path = "benches/benchmarks.rs"

[dependencies.ahash]
optional = true
version = "0.8.10"

[dependencies.equivalent]
version = "1.0.1"

[dependencies.hashbrown]
default-features = false
features = ["raw", "inline-more"]
version = "0.14"

[dependencies.parking_lot]
optional = true
version = "0.12"

[dependencies.shuttle]
optional = true
version = "0.7"

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

[dev-dependencies.rand]
features = ["small_rng"]
version = "0.8"

[dev-dependencies.rand_distr]
version = "0.4"

[dev-dependencies.tokio]
features = ["full"]
version = "1"

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

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

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

[features]
default = ["ahash", "parking_lot"]
shuttle = ["dep:shuttle"]
stats = []

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

[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(fuzzing)"]
level = "warn"
priority = 0

[package]
authors = ["Arthur Silva <arthurprs@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["caching", "concurrency", "data-structures"]
description = "Lightweight and high performance concurrent cache"
edition = "2021"
exclude = ["fuzz"]
keywords = ["lru", "concurrent", "cache"]
license = "MIT"
name = "quick_cache"
readme = "README.md"
repository = "https://github.com/arthurprs/quick-cache"
rust-version = "1.71"
version = "0.5.2"