about summary refs log tree commit diff
path: root/compiler/rustc_plugin_impl
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-10-12 07:21:49 +0000
committerbors <bors@rust-lang.org>2023-10-12 07:21:49 +0000
commiteba1f5bbdcab86b9fb0a08833c5d2d1cf4c89388 (patch)
tree55eb9f3fbbe7d3ff46f6eb35f9760cba919c1cf7 /compiler/rustc_plugin_impl
parent2b0c8a74132581a72c298fb2fb8db67cc8b824d8 (diff)
parent35de5bb9d2b1ce2944cacbc8a09f570430e1cf3b (diff)
downloadrust-eba1f5bbdcab86b9fb0a08833c5d2d1cf4c89388.tar.gz
rust-eba1f5bbdcab86b9fb0a08833c5d2d1cf4c89388.zip
Auto merge of #3120 - RalfJung:rustup, r=RalfJung
Rustup
Diffstat (limited to 'compiler/rustc_plugin_impl')
-rw-r--r--compiler/rustc_plugin_impl/src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/rustc_plugin_impl/src/lib.rs b/compiler/rustc_plugin_impl/src/lib.rs
index faa7495ef9f..0e1c80a1f64 100644
--- a/compiler/rustc_plugin_impl/src/lib.rs
+++ b/compiler/rustc_plugin_impl/src/lib.rs
@@ -7,6 +7,9 @@
 //! of the Unstable Book for some examples.
 
 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
+#![cfg_attr(not(bootstrap), doc(rust_logo))]
+#![cfg_attr(not(bootstrap), feature(rustdoc_internals))]
+#![cfg_attr(not(bootstrap), allow(internal_features))]
 #![recursion_limit = "256"]
 #![deny(rustc::untranslatable_diagnostic)]
 #![deny(rustc::diagnostic_outside_of_impl)]