diff options
| author | bors <bors@rust-lang.org> | 2023-05-07 22:51:44 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-05-07 22:51:44 +0000 |
| commit | ad6b20bf5225c65aab30169c9a173719f5bdfc04 (patch) | |
| tree | 699adb78b899d2943a4fb07dc817d0f78362124a | |
| parent | c4190f2d3a46a59f435f7b42f58bc22b2f4d6917 (diff) | |
| parent | 0b9feea0a406b2eb082a8f92d5632d6802cfd60e (diff) | |
| download | rust-ad6b20bf5225c65aab30169c9a173719f5bdfc04.tar.gz rust-ad6b20bf5225c65aab30169c9a173719f5bdfc04.zip | |
Auto merge of #111306 - Urgau:hashbrown-std-0.13, r=Amanieu
Update hashbrown from 0.12.3 to 0.13.1 for std This PR updates hashbrown from 0.12.3 to 0.13.1 for std. r? `@Amanieu`
| -rw-r--r-- | Cargo.lock | 8 | ||||
| -rw-r--r-- | library/std/Cargo.toml | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock index 724587a4a71..bab73ff6770 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1546,9 +1546,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" dependencies = [ "ahash 0.7.4", - "compiler_builtins", - "rustc-std-workspace-alloc", - "rustc-std-workspace-core", ] [[package]] @@ -1558,6 +1555,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "33ff8ae62cd3a9102e5637afc8452c55acf3844001bd5374e0b0bd7b6616c038" dependencies = [ "ahash 0.8.2", + "compiler_builtins", + "rustc-std-workspace-alloc", + "rustc-std-workspace-core", ] [[package]] @@ -4607,7 +4607,7 @@ dependencies = [ "core", "dlmalloc", "fortanix-sgx-abi", - "hashbrown 0.12.3", + "hashbrown 0.13.1", "hermit-abi 0.3.0", "libc", "miniz_oxide", diff --git a/library/std/Cargo.toml b/library/std/Cargo.toml index 72a5b477330..0441f7e6c86 100644 --- a/library/std/Cargo.toml +++ b/library/std/Cargo.toml @@ -19,7 +19,7 @@ libc = { version = "0.2.142", default-features = false, features = ['rustc-dep-o compiler_builtins = { version = "0.1.91" } profiler_builtins = { path = "../profiler_builtins", optional = true } unwind = { path = "../unwind" } -hashbrown = { version = "0.12", default-features = false, features = ['rustc-dep-of-std'] } +hashbrown = { version = "0.13", default-features = false, features = ['rustc-dep-of-std'] } std_detect = { path = "../stdarch/crates/std_detect", default-features = false, features = ['rustc-dep-of-std'] } # Dependencies of the `backtrace` crate |
