Skip to content

Commit 10c4c4a

Browse files
committed
Auto merge of #92998 - Amanieu:hashbrown12, r=Mark-Simulacrum
Update hashbrown to 0.12.0 [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md#v0120---2022-01-17)
2 parents bfe1564 + 537439c commit 10c4c4a

File tree

3 files changed

+29
-10
lines changed

3 files changed

+29
-10
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
]
@@ -4814,7 +4822,7 @@ dependencies = [
48144822
"core",
48154823
"dlmalloc",
48164824
"fortanix-sgx-abi",
4817-
"hashbrown",
4825+
"hashbrown 0.12.0",
48184826
"hermit-abi",
48194827
"libc",
48204828
"miniz_oxide",
@@ -5096,7 +5104,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
50965104
checksum = "dd95b4559c196987c8451b4e14d08a4c796c2844f9adf4d2a2dbc9b3142843be"
50975105
dependencies = [
50985106
"gimli 0.26.1",
5099-
"hashbrown",
5107+
"hashbrown 0.11.2",
51005108
"object 0.28.1",
51015109
"tracing",
51025110
]

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

library/std/src/collections/hash/map/tests.rs

+16-5
Original file line numberDiff line numberDiff line change
@@ -817,6 +817,7 @@ fn test_retain() {
817817
}
818818

819819
#[test]
820+
#[cfg_attr(target_os = "android", ignore)] // Android used in CI has a broken dlmalloc
820821
fn test_try_reserve() {
821822
let mut empty_bytes: HashMap<u8, u8> = HashMap::new();
822823

@@ -828,11 +829,21 @@ fn test_try_reserve() {
828829
"usize::MAX should trigger an overflow!"
829830
);
830831

831-
assert_matches!(
832-
empty_bytes.try_reserve(MAX_USIZE / 8).map_err(|e| e.kind()),
833-
Err(AllocError { .. }),
834-
"usize::MAX / 8 should trigger an OOM!"
835-
);
832+
if let Err(AllocError { .. }) = empty_bytes.try_reserve(MAX_USIZE / 16).map_err(|e| e.kind()) {
833+
} else {
834+
// This may succeed if there is enough free memory. Attempt to
835+
// allocate a few more hashmaps to ensure the allocation will fail.
836+
let mut empty_bytes2: HashMap<u8, u8> = HashMap::new();
837+
let _ = empty_bytes2.try_reserve(MAX_USIZE / 16);
838+
let mut empty_bytes3: HashMap<u8, u8> = HashMap::new();
839+
let _ = empty_bytes3.try_reserve(MAX_USIZE / 16);
840+
let mut empty_bytes4: HashMap<u8, u8> = HashMap::new();
841+
assert_matches!(
842+
empty_bytes4.try_reserve(MAX_USIZE / 16).map_err(|e| e.kind()),
843+
Err(AllocError { .. }),
844+
"usize::MAX / 16 should trigger an OOM!"
845+
);
846+
}
836847
}
837848

838849
#[test]

0 commit comments

Comments
 (0)