Skip to content

Commit 7f80229

Browse files
authored
Merge pull request #343 from cuviper/hash_table
Use `hashbrown::HashTable` instead of `RawTable`
2 parents 09b48ec + e577bf2 commit 7f80229

File tree

7 files changed

+425
-477
lines changed

7 files changed

+425
-477
lines changed

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,8 @@ rayon = { version = "1.5.3", optional = true }
2727
rustc-rayon = { package = "rustc-rayon", version = "0.5", optional = true }
2828

2929
[dependencies.hashbrown]
30-
version = "0.14.1"
30+
version = "0.15.0"
3131
default-features = false
32-
features = ["raw"]
3332

3433
[dev-dependencies]
3534
itertools = "0.13"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// We *mostly* avoid unsafe code, but `map::core::raw` allows it to use `RawTable` buckets.
1+
// We *mostly* avoid unsafe code, but `Slice` allows it for DST casting.
22
#![deny(unsafe_code)]
33
#![warn(rust_2018_idioms)]
44
#![no_std]

0 commit comments

Comments
 (0)