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