Skip to content

Commit

Permalink
Use hashbrown::HashTable instead of RawTable
Browse files Browse the repository at this point in the history
  • Loading branch information
cuviper committed Oct 1, 2024
1 parent 09b48ec commit e577bf2
Show file tree
Hide file tree
Showing 7 changed files with 425 additions and 477 deletions.
3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,8 @@ rayon = { version = "1.5.3", optional = true }
rustc-rayon = { package = "rustc-rayon", version = "0.5", optional = true }

[dependencies.hashbrown]
version = "0.14.1"
version = "0.15.0"
default-features = false
features = ["raw"]

[dev-dependencies]
itertools = "0.13"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// We *mostly* avoid unsafe code, but `map::core::raw` allows it to use `RawTable` buckets.
// We *mostly* avoid unsafe code, but `Slice` allows it for DST casting.
#![deny(unsafe_code)]
#![warn(rust_2018_idioms)]
#![no_std]
Expand Down
Loading

0 comments on commit e577bf2

Please sign in to comment.