Skip to content

Commit c1d0868

Browse files
blinxenByron
authored andcommitted
chore!: Update hashbrown to the latest version
This updates re-exports, removing `raw` and adding `hash_table`.
1 parent 6f569ce commit c1d0868

File tree

3 files changed

+14
-53
lines changed

3 files changed

+14
-53
lines changed

Cargo.lock

Lines changed: 12 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gix-hashtable/Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,5 @@ doctest = false
1616

1717
[dependencies]
1818
parking_lot = "0.12.4"
19-
hashbrown = { version = "0.14.0", default-features = false, features = [
20-
"inline-more",
21-
"raw"
22-
] }
19+
hashbrown = { version = "0.15.4", default-features = false, features = ["inline-more"] }
2320
gix-hash = { version = "^0.18.0", path = "../gix-hash" }

gix-hashtable/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#![forbid(unsafe_code)]
66

77
use gix_hash::ObjectId;
8-
pub use hashbrown::{hash_map, hash_set, raw, Equivalent};
8+
pub use hashbrown::{hash_map, hash_set, hash_table, Equivalent};
99

1010
/// thread-safe types
1111
pub mod sync {

0 commit comments

Comments
 (0)