[package] name = "const-lru" version = "1.0.0" edition = "2021" authors = ["billythedummy"] license = "MIT OR Apache-2.0" homepage = "https://github.com/billythedummy/const-lru" repository = "https://github.com/billythedummy/const-lru.git" readme = "README.md" keywords = ["lru", "cache", "const-generics", "data-structure", "no_std"] categories = ["algorithms", "caching", "data-structures", "no-std"] description = "A simple no_std, non-hashing, constant-capacity, constant-memory-usage LRU cache." include = ["/src", "/tests", "/benches", "/README.md"] [dependencies] num-traits = { version = ">=0.2", default-features = false } [dev-dependencies] criterion = { version = "^0.5", features = ["html_reports"] } [[bench]] name = "bench" harness = false