Skip to content

Commit 00fd613

Browse files
committed
Upgrade hashbrown to 0.12.3
This fixes a double-free in the `clone_from` function if dropping an existing element in the table panics. See rust-lang/hashbrown#348 for more details. The indexmap crate is also updated to use the latest hashbrown version.
1 parent 1cd72b7 commit 00fd613

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Cargo.lock

+7-7
Original file line numberDiff line numberDiff line change
@@ -1658,9 +1658,9 @@ dependencies = [
16581658

16591659
[[package]]
16601660
name = "hashbrown"
1661-
version = "0.12.0"
1661+
version = "0.12.3"
16621662
source = "registry+https://github.com/rust-lang/crates.io-index"
1663-
checksum = "8c21d40587b92fa6a6c6e3c1bdbf87d75511db5672f9c93175574b3a00df1758"
1663+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
16641664
dependencies = [
16651665
"ahash",
16661666
"compiler_builtins",
@@ -1822,12 +1822,12 @@ dependencies = [
18221822

18231823
[[package]]
18241824
name = "indexmap"
1825-
version = "1.8.2"
1825+
version = "1.9.1"
18261826
source = "registry+https://github.com/rust-lang/crates.io-index"
1827-
checksum = "e6012d540c5baa3589337a98ce73408de9b5a25ec9fc2c6fd6be8f0d39e0ca5a"
1827+
checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
18281828
dependencies = [
18291829
"autocfg",
1830-
"hashbrown 0.11.2",
1830+
"hashbrown 0.12.3",
18311831
"rustc-rayon",
18321832
"serde",
18331833
]
@@ -2514,7 +2514,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
25142514
checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53"
25152515
dependencies = [
25162516
"crc32fast",
2517-
"hashbrown 0.12.0",
2517+
"hashbrown 0.12.3",
25182518
"indexmap",
25192519
"memchr",
25202520
]
@@ -4978,7 +4978,7 @@ dependencies = [
49784978
"core",
49794979
"dlmalloc",
49804980
"fortanix-sgx-abi",
4981-
"hashbrown 0.12.0",
4981+
"hashbrown 0.12.3",
49824982
"hermit-abi 0.2.0",
49834983
"libc",
49844984
"miniz_oxide",

0 commit comments

Comments
 (0)