Skip to content

Commit d9a49e6

Browse files
committed
[DO NOT MERGE] patched hashbrown using Allocator::allocate_at_least
1 parent 8757077 commit d9a49e6

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

library/Cargo.lock

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,7 @@ dependencies = [
126126
[[package]]
127127
name = "hashbrown"
128128
version = "0.17.1"
129-
source = "registry+https://github.com/rust-lang/crates.io-index"
130-
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
129+
source = "git+https://github.com/jmillikin/upstream__hashbrown?rev=933702b368163ffafff8fa8d1b95876bf0f26aa4#933702b368163ffafff8fa8d1b95876bf0f26aa4"
131130
dependencies = [
132131
"foldhash",
133132
"rustc-std-workspace-alloc",

library/std/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ panic_unwind = { path = "../panic_unwind", optional = true }
2020
panic_abort = { path = "../panic_abort" }
2121
core = { path = "../core", public = true }
2222
unwind = { path = "../unwind" }
23-
hashbrown = { version = "0.17.1", default-features = false, features = [
23+
hashbrown = { git = "https://github.com/jmillikin/upstream__hashbrown", rev = "933702b368163ffafff8fa8d1b95876bf0f26aa4", default-features = false, features = [
2424
'rustc-dep-of-std',
2525
] }
2626
std_detect = { path = "../std_detect", public = true }

0 commit comments

Comments
 (0)