Skip to content

Commit d347ea9

Browse files
committed
[DO NOT MERGE] Test the hashbrown add-is_empty-checks branch.
1 parent e95e084 commit d347ea9

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

Cargo.lock

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1533,6 +1533,11 @@ name = "hashbrown"
15331533
version = "0.11.0"
15341534
source = "registry+https://github.com/rust-lang/crates.io-index"
15351535
checksum = "362385356d610bd1e5a408ddf8d022041774b683f345a1d2cfcb4f60f8ae2db5"
1536+
1537+
[[package]]
1538+
name = "hashbrown"
1539+
version = "0.11.2"
1540+
source = "git+https://github.com/nnethercote/hashbrown?branch=add-is_empty-checks#dec8e8cccbb6e2742b9f551bb9b95d4a8a9d0b63"
15361541
dependencies = [
15371542
"compiler_builtins",
15381543
"rustc-std-workspace-alloc",
@@ -1683,7 +1688,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
16831688
checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5"
16841689
dependencies = [
16851690
"autocfg",
1686-
"hashbrown",
1691+
"hashbrown 0.11.0",
16871692
"serde",
16881693
]
16891694

@@ -5001,7 +5006,7 @@ dependencies = [
50015006
"core",
50025007
"dlmalloc",
50035008
"fortanix-sgx-abi",
5004-
"hashbrown",
5009+
"hashbrown 0.11.2",
50055010
"hermit-abi",
50065011
"libc",
50075012
"miniz_oxide",

library/std/Cargo.toml

Lines changed: 1 addition & 1 deletion
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 = { git = "https://github.com/nnethercote/hashbrown", branch = "add-is_empty-checks", 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)