We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5e4148 commit 8742bafCopy full SHA for 8742baf
src/tools/build-manifest/src/main.rs
@@ -386,7 +386,10 @@ impl Builder {
386
// for users to install the additional component manually, if needed.
387
if self.versions.channel() == "nightly" {
388
self.extend_profile("complete", &mut manifest.profiles, &["rustc-dev"]);
389
- self.extend_profile("complete", &mut manifest.profiles, &["rustc-docs"]);
+ // Do not include the rustc-docs component for now, as it causes
390
+ // conflicts with the rust-docs component when installed. See
391
+ // #75833.
392
+ // self.extend_profile("complete", &mut manifest.profiles, &["rustc-docs"]);
393
}
394
395
0 commit comments