mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
Auto merge of #155154 - clarfonthey:hashbrown-0.17, r=Mark-Simulacrum
Update hashbrown to 0.17 The main benefit of this update is to include one potential UB fix and one bug; relevant changelog entries: * Fixed potential UB in `RawTableInner::fallible_with_capacity` (rust-lang/hashbrown#692) * Fixed incorrect length if a hasher panics during rehash (rust-lang/hashbrown#710) cc @Amanieu Also cc @RalfJung who had also noticed the UB issue with `-Zmiri-recursive-validation`.
This commit is contained in:
+2
-2
@@ -125,9 +125,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "hashbrown"
|
||||
version = "0.16.1"
|
||||
version = "0.17.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
||||
checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
|
||||
dependencies = [
|
||||
"foldhash",
|
||||
"rustc-std-workspace-alloc",
|
||||
|
||||
@@ -20,7 +20,7 @@ panic_unwind = { path = "../panic_unwind", optional = true }
|
||||
panic_abort = { path = "../panic_abort" }
|
||||
core = { path = "../core", public = true }
|
||||
unwind = { path = "../unwind" }
|
||||
hashbrown = { version = "0.16.1", default-features = false, features = [
|
||||
hashbrown = { version = "0.17.0", default-features = false, features = [
|
||||
'rustc-dep-of-std',
|
||||
] }
|
||||
std_detect = { path = "../std_detect", public = true }
|
||||
|
||||
Reference in New Issue
Block a user