• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2
3name = "lru-cache"
4version = "0.1.2"
5license = "MIT/Apache-2.0"
6description = "A cache that holds a limited number of key-value pairs"
7authors = [
8    "Stepan Koltsov <stepan.koltsov@gmail.com>",
9]
10
11repository = "https://github.com/contain-rs/lru-cache"
12homepage = "https://github.com/contain-rs/lru-cache"
13documentation = "https://contain-rs.github.io/lru-cache/lru_cache"
14keywords = ["data-structures"]
15readme = "README.md"
16
17[features]
18heapsize_impl = ["heapsize", "linked-hash-map/heapsize_impl"]
19
20[dependencies]
21linked-hash-map = "0.5"
22
23heapsize = { version = "0.4", optional = true }
24