Skip to content

Rollup of 9 pull requests #145519

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 22 commits into from
Closed

Conversation

Zalathar
Copy link
Contributor

@Zalathar Zalathar commented Aug 17, 2025

Successful merges:

r? @ghost
@rustbot modify labels: rollup

Create a similar rollup

Kivooeo and others added 22 commits August 5, 2025 01:21
This handles various kinds of errors, but does not allow applying the
derive yet.

This adds the feature gate `macro_derive`.
Add infrastructure to apply a derive macro to arguments, consuming and
returning a `TokenTree` only.

Handle `SyntaxExtensionKind::MacroRules` when expanding a derive, if the
macro's kinds support derive.

Add tests covering various cases of `macro_rules` derives.

Note that due to a pre-existing FIXME in `expand.rs`, derives are
re-queued and some errors get emitted twice. Duplicate diagnostic
suppression makes them not visible, but the FIXME should still get
fixed.
this fixes `tests/ui/process/nofile-limit.rs` which fails to link on
nixos for me without this change
The target is removed by `copy_link` too, so no need to duplicate the syscall.
…olbinarycat,GuillaumeGomez

rustdoc-search: search backend with partitioned suffix tree

Before:
- https://notriddle.com/windows-docs-rs/doc-old/windows/
- https://doc.rust-lang.org/1.89.0/std/index.html
- https://doc.rust-lang.org/1.89.0/nightly-rustc/rustc_hir/index.html

After:

- https://notriddle.com/windows-docs-rs/doc/windows/
- https://notriddle.com/rustdoc-html-demo-12/stringdex/doc/std/index.html
- https://notriddle.com/rustdoc-html-demo-12/stringdex/compiler-doc/rustc_hir/index.html

## Summary

Rewrites the rustdoc search engine to use an indexed data structure, factored out as a crate called [stringdex](https://crates.io/crates/stringdex), that allows it to perform modified-levenshtein distance calculations, substring matches, and prefix matches in a reasonably efficient, and, more importantly, *incremental* algorithm.

## Motivation

Fixes rust-lang#131156

While the windows-rs crate is definitely the worst offender, I've noticed performance problems with the compiler crates as well. It makes no sense for rustdoc-search to have poor performance: it's basically a spell checker, and those have been usable since the 90's.

Stringdex is particularly designed to quickly return exact matches, to always report those matches first, and to never, ever [place new matches on top of old ones](https://web.dev/articles/cls). It also tries to yield to the event loop occasionally as it runs. This way, you can click the exactly-matched result before the rest of the search finishes running.

## Explanation

A longer description of how name search works can be found in stringdex's [HACKING.md](https://gitlab.com/notriddle/stringdex/-/blob/main/HACKING.md) file.

Type search is done by performing a name search on each element, then performing bitmap operations to narrow down a list of potential matches, then performing type unification on each match.

## Drawbacks

It's rather complex, and takes up more disk space than the current flat list of strings.

## Rationale and alternatives

Instead of a suffix tree, I could've used a different [approximate matching data structure](https://en.wikipedia.org/wiki/Approximate_string_matching). I didn't do that because I wanted to keep the current behavior (for example, a straightforward trigram index won't match [oepn](https://doc.rust-lang.org/nightly/std/?search=oepn) like the current system does).

## Prior art

[Sherlodoc](https://github.com/art-w/sherlodoc) is based on a similar concept, but they:

- use edit distance over a suffix tree for type-based search, instead of the binary matching that's implemented here
- use substring matching for name-based search, [but not fuzzy name matching](art-w/sherlodoc#21)
- actually implement body text search, which is a potential-future feature, but not implemented in this PR

## Future possibilities

### Low-level optimization in stringdex

There are half a dozen low-level optimizations that I still need to explore. I haven't done them yet, because I've been working on bug fixes and rebasing on rustdoc's side, and a more solid and diverse test suite for stringdex itself.

- Stringdex decides whether to bundle two nodes into the same file based on size. To figure out a node's size, I have to run compression on it. This is probably slower than it needs to be.
- Stack compression is limited to the same 256-slot sliding windows as backref compression, and it doesn't have to be. (stack and backref compression are used to optimize the representation of the edge pointer from a parent node to its child; backref uses one byte, while stack is entirely implicit)
- The JS-side decoder is pretty naive. It performs unnecessary hash table lookups when decoding compressed nodes, and retains a list of hashes that it doesn't need. It needs to calculate the hashes in order to construct the merkle tree correctly, but it doesn't need to keep them.
- Data compression happens at the end, while emitting the node. This means it's not being counted when deciding on how to bundle, which is pretty dumb.

### Improved recall in type-driven search

Right now, type-driven search performs very strict matching. It's very precise, but misses a lot of things people would want.

What I'm not sure about is whether to focus more on edit-distance-based approaches, or to focus on type-theoretical approaches. Both gives avenues to improve, but edit distance is going to be faster while type checking is going to be more precise.

For example, a type theoretical improvement would fix [`Iterator<T>, (T -> U) -> Iterator<U>`](https://doc.rust-lang.org/nightly/std/?search=Iterator%3CT%3E%2C%20(T%20-%3E%20U)%20-%3E%20Iterator%3CU%3E) to give [`Iterator::map`](https://doc.rust-lang.org/nightly/std/iter/trait.Iterator.html#method.map), because it would recognize that the Map struct implements the Iterator trait. I don't know of any clean way to get this result to work without implementing significant type checking logic in search.js, and an edit-distance-based "dirty" approach would likely give a bunch of other results on top of this one.

## Full-text search

Once you've got this fuzzy dictionary matching to work, the logical next step is to implement some kind of information retrieval-based approach to phrase matching.

Like applying edit distance to types, phrase search gets you significantly better recall, but with a few major drawbacks:

- You have to pick between index bloat and the use of stopwords. Stopwords are bad because they might actually be important (try searching "if let" in mdBook if you're feeling brave), but without them, you spend a lot of space on text that doesn't matter.
- Example code also tends to have a lot of irrelevant stuff in it. Like stop words, we'd have to pick potentially-confusing or bloat.

Neither of these problems are deal-breakers, but they're worth keeping in mind.
Fix outdated doc comment

This updates the documentation comment for `Type::is_doc_subtype_of` to more accurately describe its purpose as a subtyping check, rather than equality

fixes rust-lang#138572

r? ````@tgross35````
…szelmann

Port `#[custom_mir(..)]` to the new attribute system

r? ```@jdonszelmann```
…enkov

Implement declarative (`macro_rules!`) derive macros (RFC 3698)

This is a draft for review, and should not be merged yet.

This is layered atop rust-lang#145153 , and has
only two additional commits atop that. The first handles parsing and provides a
test for various parse errors. The second implements expansion and handles
application.

This implements RFC 3698, "Declarative (`macro_rules!`) derive macros".
Tracking issue: rust-lang#143549

This has one remaining issue, which I could use some help debugging: in
`tests/ui/macros/macro-rules-derive-error.rs`, the diagnostics for
`derive(fn_only)` (for a `fn_only` with no `derive` rules) and
`derive(ForwardReferencedDerive)` both get emitted twice, as a duplicate
diagnostic.

From what I can tell via adding some debugging code,
`unresolved_macro_suggestions` is getting called twice from
`finalize_macro_resolutions` for each of them, because
`self.single_segment_macro_resolutions` has two entries for the macro, with two
different `parent_scope` values. I'm not clear on why that happened; it doesn't
happen with the equivalent code using attrs.

I'd welcome any suggestions for fixing this.
cg_llvm: Use LLVM-C bindings for `LLVMSetTailCallKind`, `LLVMGetTypeKind`

This PR replaces two existing `LLVMRust` bindings with equivalent calls to the LLVM-C API.

For `LLVMGetTypeKind`, we avoid the UB hazard by declaring the foreign function to return `RawEnum<TypeKind>` (which is a wrapper around `u32`), and then perform checked conversion from `u32` to `TypeKind`.
…rieb

Add static glibc to the nix dev shell

This fixes `tests/ui/process/nofile-limit.rs` which fails to link on nixos for me without this change.
…dirs, r=jieyouxu

Speedup `copy_src_dirs` in bootstrap

I was kinda offended by how slow it was. Just the `copy_src_dirs` part took ~3s locally in the `x dist rustc-src` step. In release mode it was just 1s, but that's kind of cheating (I wonder if we should build bootstrap in release mode on CI though...).

Did some basic optimizations to bring it down to ~1s also in debug mode.

Maybe it's overkill, due to rust-lang#145455. Up to you whether we should merge it or close it :)

r? ```@jieyouxu```
Fix typo in doc for library/std/src/fs.rs#set_permissions

"privalage" -> "privilege".

Was reading the docs and have noticed this.
…rgets, r=jdonszelmann

Fix deprecation attributes on foreign statics

r? ```@jdonszelmann```

Fixes rust-lang#145437
@rustbot rustbot added A-attributes Area: Attributes (`#[…]`, `#![…]`) A-CI Area: Our Github Actions CI A-LLVM Area: Code generation parts specific to LLVM. Both correctness bugs and optimization-related issues. A-run-make Area: port run-make Makefiles to rmake.rs A-rustdoc-search Area: Rustdoc's search feature A-testsuite Area: The testsuite used to check the correctness of rustc S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) labels Aug 17, 2025
@bors
Copy link
Collaborator

bors commented Aug 17, 2025

📌 Commit 453e4fd has been approved by Zalathar

It is now in the queue for this repository.

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Aug 17, 2025
@Zalathar
Copy link
Contributor Author

@bors try jobs=x86_64-gnu-aux

@rust-bors

This comment has been minimized.

rust-bors bot added a commit that referenced this pull request Aug 17, 2025
Rollup of 9 pull requests

try-job: x86_64-gnu-aux
@Zalathar
Copy link
Contributor Author

Replacing this with #145521 to include another priority rollup PR.

@Zalathar Zalathar closed this Aug 17, 2025
@Zalathar Zalathar deleted the rollup-28idalp branch August 17, 2025 06:38
@rust-bors
Copy link

rust-bors bot commented Aug 17, 2025

☀️ Try build successful (CI)
Build commit: 8ba8586 (8ba858683f6d3c455abcf7ee76d0a707aff346a9, parent: 2e2642e641a941f0a1400c7827fd89aa86fef8f4)

@Zalathar Zalathar restored the rollup-28idalp branch August 17, 2025 09:08
@Zalathar Zalathar reopened this Aug 17, 2025
@rustbot rustbot added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Aug 17, 2025
@Zalathar
Copy link
Contributor Author

@bors r+ rollup=never p=5

@bors
Copy link
Collaborator

bors commented Aug 17, 2025

💡 This pull request was already approved, no need to approve it again.

@bors
Copy link
Collaborator

bors commented Aug 17, 2025

📌 Commit 453e4fd has been approved by Zalathar

It is now in the queue for this repository.

@bors bors removed the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Aug 17, 2025
@bors
Copy link
Collaborator

bors commented Aug 17, 2025

⌛ Testing commit 453e4fd with merge f12e663...

bors added a commit that referenced this pull request Aug 17, 2025
Rollup of 9 pull requests

Successful merges:

 - #144476 (rustdoc-search: search backend with partitioned suffix tree)
 - #144838 (Fix outdated doc comment)
 - #145206 (Port `#[custom_mir(..)]` to the new attribute system)
 - #145208 (Implement declarative (`macro_rules!`) derive macros (RFC 3698))
 - #145420 (cg_llvm: Use LLVM-C bindings for `LLVMSetTailCallKind`, `LLVMGetTypeKind`)
 - #145451 (Add static glibc to the nix dev shell)
 - #145460 (Speedup `copy_src_dirs` in bootstrap)
 - #145476 (Fix typo in doc for library/std/src/fs.rs#set_permissions)
 - #145485 (Fix deprecation attributes on foreign statics)

r? `@ghost`
`@rustbot` modify labels: rollup
@rust-log-analyzer
Copy link
Collaborator

The job aarch64-apple failed! Check out the build log: (web) (plain enhanced) (plain)

Click to see the possible cause of the failure (guessed by this bot)
##[endgroup]
[TIMING:end] tool::ToolBuild { build_compiler: Compiler { stage: 0, host: aarch64-apple-darwin, forced_compiler: false }, target: aarch64-apple-darwin, tool: "html-checker", path: "src/tools/html-checker", mode: ToolBootstrap, source_type: InTree, extra_features: [], allow_features: "", cargo_args: [], artifact_kind: Binary } -- 3.973
[TIMING:end] tool::HtmlChecker { compiler: Compiler { stage: 0, host: aarch64-apple-darwin, forced_compiler: false }, target: aarch64-apple-darwin } -- 0.000
Running HTML checker...
=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/index.html` (error code: 2) <=
line 1 column 1848 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/all.html` (error code: 2) <=
line 1 column 1800 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/macro.vec.html` (error code: 2) <=
line 1 column 1848 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/alloc/index.html` (error code: 2) <=
line 1 column 1860 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/alloc/trait.Allocator.html` (error code: 2) <=
line 1 column 1974 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/alloc/fn.handle_alloc_error.html` (error code: 2) <=
line 1 column 1890 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/alloc/trait.GlobalAlloc.html` (error code: 2) <=
line 1 column 1972 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/alloc/fn.alloc_zeroed.html` (error code: 2) <=
line 1 column 1910 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/alloc/fn.dealloc.html` (error code: 2) <=
line 1 column 1890 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/alloc/struct.Layout.html` (error code: 2) <=
line 1 column 1876 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/alloc/struct.Global.html` (error code: 2) <=
line 1 column 1876 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/alloc/type.LayoutErr.html` (error code: 2) <=
line 1 column 1914 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/alloc/fn.realloc.html` (error code: 2) <=
line 1 column 1890 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/alloc/fn.alloc.html` (error code: 2) <=
line 1 column 1886 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/alloc/struct.LayoutError.html` (error code: 2) <=
line 1 column 2015 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/alloc/struct.AllocError.html` (error code: 2) <=
line 1 column 2029 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/bstr/index.html` (error code: 2) <=
line 1 column 1900 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/enum.Alignment.html` (error code: 2) <=
line 1 column 1897 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/trait.UpperExp.html` (error code: 2) <=
line 1 column 1862 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/struct.DebugSet.html` (error code: 2) <=
line 1 column 1899 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/index.html` (error code: 2) <=
line 1 column 1884 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/trait.UpperHex.html` (error code: 2) <=
line 1 column 1862 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/struct.FromFn.html` (error code: 2) <=
line 1 column 1906 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/enum.DebugAsHex.html` (error code: 2) <=
line 1 column 1944 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/bstr/struct.ByteStr.html` (error code: 2) <=
line 1 column 1956 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/bstr/struct.ByteString.html` (error code: 2) <=
line 1 column 1965 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/struct.DebugList.html` (error code: 2) <=
line 1 column 1900 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/fn.from_fn.html` (error code: 2) <=
line 1 column 1937 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/derive.Debug.html` (error code: 2) <=
line 1 column 1898 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/struct.FormattingOptions.html` (error code: 2) <=
line 1 column 1880 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/trait.Pointer.html` (error code: 2) <=
line 1 column 1861 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/struct.DebugStruct.html` (error code: 2) <=
line 1 column 1902 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/trait.Octal.html` (error code: 2) <=
line 1 column 1859 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/struct.Error.html` (error code: 2) <=
line 1 column 1918 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/fn.write.html` (error code: 2) <=
line 1 column 1944 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/trait.LowerExp.html` (error code: 2) <=
line 1 column 1862 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/trait.Write.html` (error code: 2) <=
line 1 column 1920 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/struct.Formatter.html` (error code: 2) <=
line 1 column 1878 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/struct.DebugTuple.html` (error code: 2) <=
line 1 column 1901 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/trait.LowerHex.html` (error code: 2) <=
line 1 column 1862 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/enum.Sign.html` (error code: 2) <=
line 1 column 1904 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/fn.format.html` (error code: 2) <=
line 1 column 1913 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/trait.Binary.html` (error code: 2) <=
line 1 column 1860 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/type.Result.html` (error code: 2) <=
line 1 column 1883 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/trait.Display.html` (error code: 2) <=
line 1 column 1885 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/struct.Arguments.html` (error code: 2) <=
line 1 column 2092 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/struct.DebugMap.html` (error code: 2) <=
line 1 column 1899 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/fmt/trait.Debug.html` (error code: 2) <=
line 1 column 1859 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/struct.Chunks.html` (error code: 2) <=
line 1 column 1975 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/fn.from_raw_parts_mut.html` (error code: 2) <=
line 1 column 1949 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/fn.try_range.html` (error code: 2) <=
line 1 column 1901 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/struct.RChunksExactMut.html` (error code: 2) <=
line 1 column 1986 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/struct.SplitN.html` (error code: 2) <=
line 1 column 1966 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/struct.ChunkByMut.html` (error code: 2) <=
line 1 column 1936 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/struct.ChunksExact.html` (error code: 2) <=
line 1 column 1980 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/index.html` (error code: 2) <=
line 1 column 1877 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/trait.Concat.html` (error code: 2) <=
line 1 column 1878 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/struct.ArrayWindows.html` (error code: 2) <=
line 1 column 1973 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/struct.Split.html` (error code: 2) <=
line 1 column 1928 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/fn.from_mut.html` (error code: 2) <=
line 1 column 1915 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/trait.Join.html` (error code: 2) <=
line 1 column 1873 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/struct.RSplitMut.html` (error code: 2) <=
line 1 column 1982 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/struct.ChunksExactMut.html` (error code: 2) <=
line 1 column 1991 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/struct.SplitMut.html` (error code: 2) <=
line 1 column 1953 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/fn.from_ref.html` (error code: 2) <=
line 1 column 1915 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/struct.SplitInclusiveMut.html` (error code: 2) <=
line 1 column 2041 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/fn.from_mut_ptr_range.html` (error code: 2) <=
line 1 column 1899 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/struct.IterMut.html` (error code: 2) <=
line 1 column 1872 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/struct.SplitInclusive.html` (error code: 2) <=
line 1 column 2015 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/struct.RChunks.html` (error code: 2) <=
line 1 column 1970 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/struct.Windows.html` (error code: 2) <=
line 1 column 1905 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/struct.SplitNMut.html` (error code: 2) <=
line 1 column 1969 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/struct.RChunksMut.html` (error code: 2) <=
line 1 column 1981 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/trait.SliceIndex.html` (error code: 2) <=
line 1 column 1895 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/struct.RSplitN.html` (error code: 2) <=
line 1 column 2003 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/struct.EscapeAscii.html` (error code: 2) <=
line 1 column 1906 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/enum.GetDisjointMutError.html` (error code: 2) <=
line 1 column 1905 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/struct.RChunksExact.html` (error code: 2) <=
line 1 column 1975 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/fn.from_ptr_range.html` (error code: 2) <=
line 1 column 1887 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/fn.range.html` (error code: 2) <=
line 1 column 1879 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/fn.from_raw_parts.html` (error code: 2) <=
line 1 column 1894 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/struct.ChunkBy.html` (error code: 2) <=
line 1 column 1925 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.


=> Errors for `/Users/runner/work/rust/rust/build/aarch64-apple-darwin/doc/alloc/slice/struct.RSplitNMut.html` (error code: 2) <=
line 1 column 2006 - Error: <rustdoc-topbar> is not recognized! Did you mean to enable the custom-tags option? (UNKNOWN_ELEMENT_LOOKS_CUSTOM)
This document has errors that must be fixed before
using HTML Tidy to generate a tidied up version.

@bors
Copy link
Collaborator

bors commented Aug 17, 2025

💔 Test failed - checks-actions

@bors bors added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Aug 17, 2025
@Zalathar Zalathar closed this Aug 17, 2025
@rustbot rustbot removed the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Aug 17, 2025
@Zalathar Zalathar deleted the rollup-28idalp branch August 17, 2025 10:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-attributes Area: Attributes (`#[…]`, `#![…]`) A-CI Area: Our Github Actions CI A-LLVM Area: Code generation parts specific to LLVM. Both correctness bugs and optimization-related issues. A-run-make Area: port run-make Makefiles to rmake.rs A-rustdoc-search Area: Rustdoc's search feature A-testsuite Area: The testsuite used to check the correctness of rustc rollup A PR which is a rollup T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-infra Relevant to the infrastructure team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue. T-rustdoc-frontend Relevant to the rustdoc-frontend team, which will review and decide on the web UI/UX output.
Projects
None yet
Development

Successfully merging this pull request may close these issues.