web3-proxy/linkedhashmap/Cargo.toml

22 lines
361 B
TOML
Raw Normal View History

2022-05-05 22:07:09 +03:00
[package]
name = "linkedhashmap"
version = "0.2.0"
authors = ["quininer <quininer@live.com>"]
edition = "2018"
2022-05-15 04:50:23 +03:00
[features]
inline-more = [ "hashbrown" ]
2022-05-05 22:07:09 +03:00
[dependencies]
slab = "0.4.6"
2022-05-15 04:50:23 +03:00
hashbrown = { version = "0.12.1", optional = true }
2022-05-05 22:07:09 +03:00
[dev-dependencies]
criterion = "0.3.5"
hashlink = "0.8.0"
linked-hash-map = "0.5.4"
[[bench]]
name = "lru"
harness = false