diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2021-12-02 15:52:03 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-02 15:52:03 +0100 |
| commit | d96ce3ea8ef0d6e16c06feac0607533228ce75d8 (patch) | |
| tree | 361a51d567aa76056ed0c1539658588d91724e1e /library/std/src | |
| parent | 87ca33321045b1b3a10f8ed8dab40521f4bf4bec (diff) | |
| parent | 971c549ca334b7b7406e61e958efcca9c4152822 (diff) | |
| download | rust-d96ce3ea8ef0d6e16c06feac0607533228ce75d8.tar.gz rust-d96ce3ea8ef0d6e16c06feac0607533228ce75d8.zip | |
Rollup merge of #91394 - Mark-Simulacrum:bump-stage0, r=pietroalbini
Bump stage0 compiler r? `@pietroalbini` (or anyone else)
Diffstat (limited to 'library/std/src')
| -rw-r--r-- | library/std/src/lib.rs | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/library/std/src/lib.rs b/library/std/src/lib.rs index 504c3b7e9f9..41b94cb294c 100644 --- a/library/std/src/lib.rs +++ b/library/std/src/lib.rs @@ -264,8 +264,7 @@ #![feature(const_ipv4)] #![feature(const_ipv6)] #![feature(const_option)] -#![cfg_attr(bootstrap, feature(const_raw_ptr_deref))] -#![cfg_attr(not(bootstrap), feature(const_mut_refs))] +#![feature(const_mut_refs)] #![feature(const_socketaddr)] #![feature(const_trait_impl)] #![feature(container_error_extra)] @@ -275,9 +274,7 @@ #![feature(decl_macro)] #![feature(doc_cfg)] #![feature(doc_cfg_hide)] -#![cfg_attr(bootstrap, feature(doc_primitive))] -#![cfg_attr(bootstrap, feature(doc_keyword))] -#![cfg_attr(not(bootstrap), feature(rustdoc_internals))] +#![feature(rustdoc_internals)] #![feature(doc_masked)] #![feature(doc_notable_trait)] #![feature(dropck_eyepatch)] @@ -323,7 +320,7 @@ #![feature(panic_internals)] #![feature(panic_unwind)] #![feature(pin_static_ref)] -#![cfg_attr(not(bootstrap), feature(portable_simd))] +#![feature(portable_simd)] #![feature(prelude_import)] #![feature(ptr_internals)] #![feature(rustc_attrs)] @@ -476,7 +473,6 @@ pub use core::ptr; #[stable(feature = "rust1", since = "1.0.0")] pub use core::result; #[unstable(feature = "portable_simd", issue = "86656")] -#[cfg(not(bootstrap))] pub use core::simd; #[unstable(feature = "async_stream", issue = "79024")] pub use core::stream; |
