diff options
| author | Pietro Albini <pietro@pietroalbini.org> | 2023-12-22 11:14:11 +0100 |
|---|---|---|
| committer | Pietro Albini <pietro@pietroalbini.org> | 2023-12-22 11:14:11 +0100 |
| commit | 71899c3e23f2def8fc487e364a23cc3db27d7887 (patch) | |
| tree | e401eb5bf76d18248a6945ccbbdc6db55890c778 | |
| parent | a4be90ed16f57a1b0e9641642a8c7b5f39d0a827 (diff) | |
update cfg(bootstrap)s
| -rw-r--r-- | src/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs index 148193b5a97..d0ce209be44 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,6 @@ -#![cfg_attr(all(doc, not(bootstrap)), allow(internal_features))] -#![cfg_attr(all(doc, not(bootstrap)), feature(rustdoc_internals))] -#![cfg_attr(all(doc, not(bootstrap)), doc(rust_logo))] +#![cfg_attr(doc, allow(internal_features))] +#![cfg_attr(doc, feature(rustdoc_internals))] +#![cfg_attr(doc, doc(rust_logo))] #![feature(rustc_private)] // Note: please avoid adding other feature gates where possible #![warn(rust_2018_idioms)] |
