diff options
| author | Ralf Jung <post@ralfj.de> | 2020-09-20 12:08:22 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-20 12:08:22 +0200 |
| commit | 4322e1b92df83e9e8e84aac3f5f8f3545341fd3a (patch) | |
| tree | 2e1d58378db43529513b768810b75141327a1ce6 /compiler/rustc_data_structures | |
| parent | 3268e33199c98e5bfb035ea70130ea36af00e714 (diff) | |
| parent | ebdea011436dfea810ff1bbd827636ac75f6f092 (diff) | |
| download | rust-4322e1b92df83e9e8e84aac3f5f8f3545341fd3a.tar.gz rust-4322e1b92df83e9e8e84aac3f5f8f3545341fd3a.zip | |
Rollup merge of #76821 - est31:remove_redundant_nightly_features, r=oli-obk,Mark-Simulacrum
Remove redundant nightly features Removes a bunch of redundant/outdated nightly features. The first commit removes a `core_intrinsics` use for which a stable wrapper has been provided since. The second commit replaces the `const_generics` feature with `min_const_generics` which might get stabilized this year. The third commit is the result of a trial/error run of removing every single feature and then adding it back if compile failed. A bunch of unused features are the result that the third commit removes.
Diffstat (limited to 'compiler/rustc_data_structures')
| -rw-r--r-- | compiler/rustc_data_structures/src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/rustc_data_structures/src/lib.rs b/compiler/rustc_data_structures/src/lib.rs index 06718cc9803..21a5071631c 100644 --- a/compiler/rustc_data_structures/src/lib.rs +++ b/compiler/rustc_data_structures/src/lib.rs @@ -11,7 +11,6 @@ #![feature(control_flow_enum)] #![feature(in_band_lifetimes)] #![feature(unboxed_closures)] -#![feature(generators)] #![feature(generator_trait)] #![feature(fn_traits)] #![feature(int_bits_const)] @@ -27,7 +26,7 @@ #![feature(thread_id_value)] #![feature(extend_one)] #![feature(const_panic)] -#![feature(const_generics)] +#![feature(min_const_generics)] #![feature(once_cell)] #![allow(rustc::default_hash_types)] |
