1[package]
2name = "lru"
3version = "0.12.3"
4authors = ["Jerome Froelich <jeromefroelic@hotmail.com>"]
5categories = ["caching", "no-std"]
6description = "A LRU cache implementation"
7homepage = "https://github.com/jeromefroe/lru-rs"
8repository = "https://github.com/jeromefroe/lru-rs.git"
9documentation = "https://docs.rs/lru/"
10readme = "README.md"
11license = "MIT"
12keywords = ["LRU", "cache"]
13
14[features]
15default = ["hashbrown"]
16nightly = ["hashbrown", "hashbrown/nightly"]
17
18[dependencies]
19hashbrown = { version = "0.14", optional = true }
20
21[dev-dependencies]
22scoped_threadpool = "0.1.*"
23stats_alloc = "0.1.*"
24