[package]
rust-version = "1.85.0"
name = "lru"
version = "0.18.0"
authors = ["Jerome Froelich <jeromefroelic@hotmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
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"
[features]
default = ["hashbrown"]
nightly = [
"hashbrown",
"hashbrown/nightly",
]
[lib]
name = "lru"
path = "src/lib.rs"
[dependencies.hashbrown]
version = "0.17.0"
optional = true
[dev-dependencies.scoped_threadpool]
version = "0.1.*"
[dev-dependencies.stats_alloc]
version = "0.1.*"