diff options
| author | Amanieu d'Antras <amanieu@gmail.com> | 2022-01-17 07:46:11 +0000 |
|---|---|---|
| committer | Amanieu d'Antras <amanieu@gmail.com> | 2022-01-21 17:20:38 +0000 |
| commit | 88149d13e37f081b5906ec88fb073f7a28c0f34e (patch) | |
| tree | 214dde63e5b203dd695dd3cb2a92d541a957f8c1 | |
| parent | 84e918971d643c6a33067d5125214ab800ce5307 (diff) | |
| download | rust-88149d13e37f081b5906ec88fb073f7a28c0f34e.tar.gz rust-88149d13e37f081b5906ec88fb073f7a28c0f34e.zip | |
Update hashbrown to 0.12.0
| -rw-r--r-- | Cargo.lock | 16 | ||||
| -rw-r--r-- | library/std/Cargo.toml | 2 |
2 files changed, 13 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock index 1e7c9ee029b..08e943e1982 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1587,6 +1587,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" dependencies = [ "ahash", +] + +[[package]] +name = "hashbrown" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c21d40587b92fa6a6c6e3c1bdbf87d75511db5672f9c93175574b3a00df1758" +dependencies = [ "compiler_builtins", "rustc-std-workspace-alloc", "rustc-std-workspace-core", @@ -1736,7 +1744,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5" dependencies = [ "autocfg", - "hashbrown", + "hashbrown 0.11.2", "serde", ] @@ -2411,7 +2419,7 @@ checksum = "7ce8b38d41f9f3618fc23f908faae61510f8d8ce2d99cbe910641e8f1971f084" dependencies = [ "crc32fast", "flate2", - "hashbrown", + "hashbrown 0.11.2", "indexmap", "memchr", ] @@ -4825,7 +4833,7 @@ dependencies = [ "core", "dlmalloc", "fortanix-sgx-abi", - "hashbrown", + "hashbrown 0.12.0", "hermit-abi", "libc", "miniz_oxide", @@ -5107,7 +5115,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dd95b4559c196987c8451b4e14d08a4c796c2844f9adf4d2a2dbc9b3142843be" dependencies = [ "gimli 0.26.1", - "hashbrown", + "hashbrown 0.11.2", "object 0.28.1", "tracing", ] diff --git a/library/std/Cargo.toml b/library/std/Cargo.toml index 232ccdf39d4..165169aedb3 100644 --- a/library/std/Cargo.toml +++ b/library/std/Cargo.toml @@ -19,7 +19,7 @@ libc = { version = "0.2.108", default-features = false, features = ['rustc-dep-o compiler_builtins = { version = "0.1.66" } profiler_builtins = { path = "../profiler_builtins", optional = true } unwind = { path = "../unwind" } -hashbrown = { version = "0.11", default-features = false, features = ['rustc-dep-of-std'] } +hashbrown = { version = "0.12", 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 |
