-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (41 loc) · 917 Bytes
/
Cargo.toml
File metadata and controls
50 lines (41 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "tiny-lru"
version = "0.1.0"
edition = "2024"
authors = ["Snehal Koukuntla <snehalreddyk@gmail.com>"]
description = "A Fast Small-then-Spill LRU cache"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Snehal-Reddy/tiny-lru"
keywords = ["lru", "cache", "performance", "embedded", "hft"]
categories = ["data-structures", "caching"]
[features]
default = ["std"]
std = []
[dependencies]
tinyvec = { version = "1", features = ["alloc"] }
rustc-hash = "2.1.1"
likely_stable = "0.1"
[dev-dependencies]
criterion = "0.7"
lru = "0.16.2"
const-lru = "1.0.0"
schnellru = "0.2.4"
uluru = "3.1.0"
[[bench]]
name = "benchmarks"
harness = false
[[bench]]
name = "tiny_lru_bench"
harness = false
[[bench]]
name = "lru_rs_bench"
harness = false
[[bench]]
name = "const_lru_bench"
harness = false
[[bench]]
name = "schnellru_bench"
harness = false
[[bench]]
name = "uluru_bench"
harness = false