[package]
rust-version = "1.70.0"
name = "lru"
version = "0.16.4"
authors = ["Jerome Froelich <jeromefroelic@hotmail.com>"]
description = "A LRU cache implementation"
homepage = "https://github.com/jeromefroe/lru-rs"
documentation = "https://docs.rs/lru/"
readme = "README.md"
keywords = [
"LRU",
"cache",
]
categories = [
"caching",
"no-std",
]
license = "MIT"
repository = "https://github.com/jeromefroe/lru-rs.git"
[dependencies.hashbrown]
version = "0.16.0"
optional = true
[dev-dependencies.scoped_threadpool]
version = "0.1.*"
[dev-dependencies.stats_alloc]
version = "0.1.*"
[features]
default = ["hashbrown"]
nightly = [
"hashbrown",
"hashbrown/nightly",
]