[package] authors = ["Nick Fitzgerald "] categories = ["memory-management", "caching", "data-structures"] description = "A generic N-way associative cache with fixed-size capacity and random or least recently used (LRU) replacement." documentation = "https://docs.rs/associative-cache" edition = "2018" keywords = ["direct-mapped", "associative", "lru", "cache"] license = "MIT OR Apache-2.0" name = "associative-cache" readme = "./README.md" repository = "https://github.com/fitzgen/associative-cache" version = "2.0.0" rust-version = "1.65" [package.metadata.docs.rs] all-features = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] rand = { version = "0.8.5", optional = true } [profile.bench] debug = true [workspace] members = [ ".", "crates/test-utils", ]