Skip to content

Commit 71a8a38

Browse files
committed
Experiment: hashbrown that doesn't depend on compiler-builtins
1 parent f4eb180 commit 71a8a38

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

library/Cargo.lock

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,11 @@ dependencies = [
5151

5252
[[package]]
5353
name = "cfg-if"
54-
version = "1.0.1"
55-
source = "git+https://github.com/tgross35/cfg-if.git?branch=no-compiler-builtins#91c07fb51b83c24c65383d82a2f7a46e55b4ce39"
54+
version = "1.0.0"
55+
source = "registry+https://github.com/rust-lang/crates.io-index"
56+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
5657
dependencies = [
58+
"compiler_builtins 0.1.160 (registry+https://github.com/rust-lang/crates.io-index)",
5759
"rustc-std-workspace-core",
5860
]
5961

@@ -134,10 +136,8 @@ dependencies = [
134136
[[package]]
135137
name = "hashbrown"
136138
version = "0.15.3"
137-
source = "registry+https://github.com/rust-lang/crates.io-index"
138-
checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
139+
source = "git+https://github.com/tgross35/hashbrown.git?branch=no-compiler-builtins#197a1ebf65a8ee692acedc698b98d92aec291ade"
139140
dependencies = [
140-
"compiler_builtins 0.1.160 (registry+https://github.com/rust-lang/crates.io-index)",
141141
"rustc-std-workspace-alloc",
142142
"rustc-std-workspace-core",
143143
]
@@ -510,3 +510,8 @@ name = "windows_x86_64_msvc"
510510
version = "0.52.6"
511511
source = "registry+https://github.com/rust-lang/crates.io-index"
512512
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
513+
514+
[[patch.unused]]
515+
name = "cfg-if"
516+
version = "1.0.1"
517+
source = "git+https://github.com/tgross35/cfg-if.git?branch=no-compiler-builtins#91c07fb51b83c24c65383d82a2f7a46e55b4ce39"

library/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,4 @@ rustc-std-workspace-core = { path = 'rustc-std-workspace-core' }
5151
rustc-std-workspace-alloc = { path = 'rustc-std-workspace-alloc' }
5252
rustc-std-workspace-std = { path = 'rustc-std-workspace-std' }
5353
cfg-if = { git = "https://github.com/tgross35/cfg-if.git", branch = "no-compiler-builtins"}
54+
hashbrown = { git = "https://github.com/tgross35/hashbrown.git", branch = "no-compiler-builtins"}

0 commit comments

Comments
 (0)