Skip to content

Commit 30b9b91

Browse files
committed
test out experimental outlined hashmap design
1 parent 08bfe16 commit 30b9b91

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Cargo.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -1057,7 +1057,7 @@ dependencies = [
10571057
[[package]]
10581058
name = "hashbrown"
10591059
version = "0.3.0"
1060-
source = "registry+https://github.com/rust-lang/crates.io-index"
1060+
source = "git+https://github.com/gankro/hashbrown?branch=singleton#99e5ba92e83a6ad40cbc5c9d79dd18a07592ebf1"
10611061
dependencies = [
10621062
"compiler_builtins 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
10631063
"rustc-std-workspace-alloc 1.0.0",
@@ -3291,7 +3291,7 @@ dependencies = [
32913291
"core 0.0.0",
32923292
"dlmalloc 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
32933293
"fortanix-sgx-abi 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
3294-
"hashbrown 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
3294+
"hashbrown 0.3.0 (git+https://github.com/gankro/hashbrown?branch=singleton)",
32953295
"libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
32963296
"panic_abort 0.0.0",
32973297
"panic_unwind 0.0.0",
@@ -4134,7 +4134,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
41344134
"checksum globset 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4743617a7464bbda3c8aec8558ff2f9429047e025771037df561d383337ff865"
41354135
"checksum handlebars 0.32.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d89ec99d1594f285d4590fc32bac5f75cdab383f1123d504d27862c644a807dd"
41364136
"checksum handlebars 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d82e5750d8027a97b9640e3fefa66bbaf852a35228e1c90790efd13c4b09c166"
4137-
"checksum hashbrown 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "570178d5e4952010d138b0f1d581271ff3a02406d990f887d1e87e3d6e43b0ac"
4137+
"checksum hashbrown 0.3.0 (git+https://github.com/gankro/hashbrown?branch=singleton)" = "<none>"
41384138
"checksum heck 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ea04fa3ead4e05e51a7c806fc07271fdbde4e246a6c6d1efd52e72230b771b82"
41394139
"checksum hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77"
41404140
"checksum home 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "80dff82fb58cfbbc617fb9a9184b010be0529201553cda50ad04372bc2333aff"

src/libstd/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ libc = { version = "0.2.51", default-features = false, features = ['rustc-dep-of
2222
compiler_builtins = { version = "0.1.9" }
2323
profiler_builtins = { path = "../libprofiler_builtins", optional = true }
2424
unwind = { path = "../libunwind" }
25-
hashbrown = { version = "0.3.0", features = ['rustc-dep-of-std'] }
25+
hashbrown = { version = "0.3.0", git = "https://github.com/gankro/hashbrown", branch = "singleton", features = ['rustc-dep-of-std'] }
2626
rustc-demangle = { version = "0.1.10", features = ['rustc-dep-of-std'] }
2727
backtrace-sys = { version = "0.1.24", features = ["rustc-dep-of-std"], optional = true }
2828

0 commit comments

Comments
 (0)