xacrimon / dashmap

Blazing fast concurrent HashMap for Rust.
MIT License
2.99k stars 145 forks source link

Use std HashMap. #252

Closed BratSinot closed 1 year ago

BratSinot commented 1 year ago

Since Rust 1.36, this is now the HashMap implementation for the Rust standard library. So there is no point in usage hashbrown crate.

xacrimon commented 1 year ago

We cannot make this change without a semver breakage. In addition, we intend to use the hashbrown raw APIs which do not exist in std.