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]
2022-07-22 08:11:26 +03:00
slab = "0.4.7"
2022-07-19 04:31:12 +03:00
hashbrown = { version = "0.12.3", optional = true }
2022-05-05 22:07:09 +03:00
[dev-dependencies]
2022-07-08 22:00:09 +03:00
criterion = "0.3.6"
2022-05-05 22:07:09 +03:00
hashlink = "0.8.0"
2022-07-07 00:42:31 +03:00
linked-hash-map = "0.5.6"
2022-05-05 22:07:09 +03:00
[[bench]]
name = "lru"
harness = false