Skip to content

Commit 88149d1

Browse files
committed
Update hashbrown to 0.12.0
1 parent 84e9189 commit 88149d1

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

Cargo.lock

+12-4
Original file line numberDiff line numberDiff line change
@@ -1587,6 +1587,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
15871587
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
15881588
dependencies = [
15891589
"ahash",
1590+
]
1591+
1592+
[[package]]
1593+
name = "hashbrown"
1594+
version = "0.12.0"
1595+
source = "registry+https://github.com/rust-lang/crates.io-index"
1596+
checksum = "8c21d40587b92fa6a6c6e3c1bdbf87d75511db5672f9c93175574b3a00df1758"
1597+
dependencies = [
15901598
"compiler_builtins",
15911599
"rustc-std-workspace-alloc",
15921600
"rustc-std-workspace-core",
@@ -1736,7 +1744,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
17361744
checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5"
17371745
dependencies = [
17381746
"autocfg",
1739-
"hashbrown",
1747+
"hashbrown 0.11.2",
17401748
"serde",
17411749
]
17421750

@@ -2411,7 +2419,7 @@ checksum = "7ce8b38d41f9f3618fc23f908faae61510f8d8ce2d99cbe910641e8f1971f084"
24112419
dependencies = [
24122420
"crc32fast",
24132421
"flate2",
2414-
"hashbrown",
2422+
"hashbrown 0.11.2",
24152423
"indexmap",
24162424
"memchr",
24172425
]
@@ -4825,7 +4833,7 @@ dependencies = [
48254833
"core",
48264834
"dlmalloc",
48274835
"fortanix-sgx-abi",
4828-
"hashbrown",
4836+
"hashbrown 0.12.0",
48294837
"hermit-abi",
48304838
"libc",
48314839
"miniz_oxide",
@@ -5107,7 +5115,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
51075115
checksum = "dd95b4559c196987c8451b4e14d08a4c796c2844f9adf4d2a2dbc9b3142843be"
51085116
dependencies = [
51095117
"gimli 0.26.1",
5110-
"hashbrown",
5118+
"hashbrown 0.11.2",
51115119
"object 0.28.1",
51125120
"tracing",
51135121
]

library/std/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ libc = { version = "0.2.108", default-features = false, features = ['rustc-dep-o
1919
compiler_builtins = { version = "0.1.66" }
2020
profiler_builtins = { path = "../profiler_builtins", optional = true }
2121
unwind = { path = "../unwind" }
22-
hashbrown = { version = "0.11", default-features = false, features = ['rustc-dep-of-std'] }
22+
hashbrown = { version = "0.12", default-features = false, features = ['rustc-dep-of-std'] }
2323
std_detect = { path = "../stdarch/crates/std_detect", default-features = false, features = ['rustc-dep-of-std'] }
2424

2525
# Dependencies of the `backtrace` crate

0 commit comments

Comments
 (0)