Skip to content

Commit 00bd1fa

Browse files
authored
Merge pull request #2047 from blinxen/update-hashbrown
Update hashbrown to the latest version
2 parents 298f22e + c1d0868 commit 00bd1fa

File tree

4 files changed

+15
-54
lines changed

4 files changed

+15
-54
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 {

gix-index/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ gix-lock = { version = "^17.1.0", path = "../gix-lock" }
3434
gix-fs = { version = "^0.15.0", path = "../gix-fs" }
3535
gix-utils = { version = "^0.3.0", path = "../gix-utils" }
3636

37-
hashbrown = "0.14.3"
37+
hashbrown = "0.15.4"
3838
fnv = "1.0.7"
3939
thiserror = "2.0.0"
4040
memmap2 = "0.9.0"

0 commit comments

Comments
 (0)