Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7ac4b82

Browse files
committedMar 16, 2023
Auto merge of rust-lang#109206 - matthiaskrgr:rollup-oev8ax6, r=matthiaskrgr
Rollup of 10 pull requests Successful merges: - rust-lang#108875 (rustdoc: fix type search for `Option` combinators) - rust-lang#108971 (error-msg: impl better suggestion for `E0532`) - rust-lang#109139 (rustdoc: DocFS: Replace rayon with threadpool and enable it for all targets) - rust-lang#109151 (Assert def-kind is correct for alias types) - rust-lang#109158 (error-msg: expand suggestion for `unused_def` lint) - rust-lang#109166 (make `define_opaque_types` fully explicit) - rust-lang#109171 (Some cleanups in our normalization logic) - rust-lang#109180 (Unequal → Not equal) - rust-lang#109185 (rustdoc: remove `std::` from primitive intra-doc link tooltips) - rust-lang#109192 (Mention UEFI target promotion in release notes for 1.67.0) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents cd6c574 + a70e138 commit 7ac4b82

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+791
-411
lines changed
 

‎Cargo.lock

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5458,13 +5458,13 @@ dependencies = [
54585458
"itertools",
54595459
"minifier",
54605460
"once_cell",
5461-
"rayon",
54625461
"regex",
54635462
"rustdoc-json-types",
54645463
"serde",
54655464
"serde_json",
54665465
"smallvec",
54675466
"tempfile",
5467+
"threadpool",
54685468
"tracing",
54695469
"tracing-subscriber",
54705470
"tracing-tree",
@@ -6209,6 +6209,15 @@ dependencies = [
62096209
"once_cell",
62106210
]
62116211

6212+
[[package]]
6213+
name = "threadpool"
6214+
version = "1.8.1"
6215+
source = "registry+https://github.com/rust-lang/crates.io-index"
6216+
checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
6217+
dependencies = [
6218+
"num_cpus",
6219+
]
6220+
62126221
[[package]]
62136222
name = "tidy"
62146223
version = "0.1.0"

‎RELEASES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,12 +125,13 @@ Compiler
125125
- [Optimize field ordering by grouping m\*2^n-sized fields with equivalently aligned ones.](https://github.com/rust-lang/rust/pull/102750/)
126126
- [Stabilize native library modifier `verbatim`.](https://github.com/rust-lang/rust/pull/104360/)
127127

128-
Added and removed targets:
128+
Added, updated, and removed targets:
129129

130130
- [Add a tier 3 target for PowerPC on AIX](https://github.com/rust-lang/rust/pull/102293/), `powerpc64-ibm-aix`.
131131
- [Add a tier 3 target for the Sony PlayStation 1](https://github.com/rust-lang/rust/pull/102689/), `mipsel-sony-psx`.
132132
- [Add tier 3 `no_std` targets for the QNX Neutrino RTOS](https://github.com/rust-lang/rust/pull/102701/),
133133
`aarch64-unknown-nto-qnx710` and `x86_64-pc-nto-qnx710`.
134+
- [Promote UEFI targets to tier 2](https://github.com/rust-lang/rust/pull/103933/), `aarch64-unknown-uefi`, `i686-unknown-uefi`, and `x86_64-unknown-uefi`.
134135
- [Remove tier 3 `linuxkernel` targets](https://github.com/rust-lang/rust/pull/104015/) (not used by the actual kernel).
135136

136137
Refer to Rust's [platform support page][platform-support-doc]

0 commit comments

Comments
 (0)
This repository has been archived.