lru 0.17.0

A LRU cache implementation
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
rust-version = "1.85.0"
name = "lru"
version = "0.17.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.*"