diff options
| author | bors <bors@rust-lang.org> | 2022-01-16 08:12:23 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2022-01-16 08:12:23 +0000 |
| commit | 42852d7857d2955f19ec333bec1ed107964db200 (patch) | |
| tree | ae7aae62e98c28f9940dd510dc3a6b7575523dea /compiler/rustc_data_structures | |
| parent | 26c06cf8e27e5fa06b4894f14588c187510bae47 (diff) | |
| parent | f3b8812f2473b49453e79c3f57acf4fa4c2ca227 (diff) | |
| download | rust-42852d7857d2955f19ec333bec1ed107964db200.tar.gz rust-42852d7857d2955f19ec333bec1ed107964db200.zip | |
Auto merge of #92740 - cuviper:update-rayons, r=Mark-Simulacrum
Update rayon and rustc-rayon This updates rayon for various tools and rustc-rayon for the compiler's parallel mode. - rayon v1.3.1 -> v1.5.1 - rayon-core v1.7.1 -> v1.9.1 - rustc-rayon v0.3.1 -> v0.3.2 - rustc-rayon-core v0.3.1 -> v0.3.2 ... and indirectly, this updates all of crossbeam-* to their latest versions. Fixes #92677 by removing crossbeam-queue, but there's still a lingering question about how tidy discovers "runtime" dependencies. None of this is truly in the standard library's dependency tree at all.
Diffstat (limited to 'compiler/rustc_data_structures')
| -rw-r--r-- | compiler/rustc_data_structures/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_data_structures/Cargo.toml b/compiler/rustc_data_structures/Cargo.toml index e3395df3590..2bb9d6c1893 100644 --- a/compiler/rustc_data_structures/Cargo.toml +++ b/compiler/rustc_data_structures/Cargo.toml @@ -17,8 +17,8 @@ rustc_macros = { path = "../rustc_macros" } rustc_graphviz = { path = "../rustc_graphviz" } cfg-if = "0.1.2" stable_deref_trait = "1.0.0" -rayon = { version = "0.3.1", package = "rustc-rayon" } -rayon-core = { version = "0.3.1", package = "rustc-rayon-core" } +rayon = { version = "0.3.2", package = "rustc-rayon" } +rayon-core = { version = "0.3.2", package = "rustc-rayon-core" } rustc-hash = "1.1.0" smallvec = { version = "1.6.1", features = ["union", "may_dangle"] } rustc_index = { path = "../rustc_index", package = "rustc_index" } |
