diff options
| author | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-05-08 11:00:19 +1000 |
|---|---|---|
| committer | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-05-08 11:00:19 +1000 |
| commit | 56dc98b580b6bc7e816bf1b5d73e7df6eafd6245 (patch) | |
| tree | cf086ced001c1225d73390cb1e469ebc4d7267e2 /compiler | |
| parent | 9c9b568792ef20d8459c745345dd3e79b7c7fa8c (diff) | |
| download | rust-56dc98b580b6bc7e816bf1b5d73e7df6eafd6245.tar.gz rust-56dc98b580b6bc7e816bf1b5d73e7df6eafd6245.zip | |
Remove unused `step_trait` feature.
Also sort the features.
Diffstat (limited to 'compiler')
| -rw-r--r-- | compiler/rustc_target/src/lib.rs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/compiler/rustc_target/src/lib.rs b/compiler/rustc_target/src/lib.rs index 84d7930663a..46c83be9d95 100644 --- a/compiler/rustc_target/src/lib.rs +++ b/compiler/rustc_target/src/lib.rs @@ -7,16 +7,17 @@ //! more 'stuff' here in the future. It does not have a dependency on //! LLVM. +// tidy-alphabetical-start +#![allow(internal_features)] #![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")] #![doc(rust_logo)] -#![feature(min_exhaustive_patterns)] -#![feature(rustdoc_internals)] #![feature(assert_matches)] #![feature(iter_intersperse)] #![feature(let_chains)] +#![feature(min_exhaustive_patterns)] #![feature(rustc_attrs)] -#![feature(step_trait)] -#![allow(internal_features)] +#![feature(rustdoc_internals)] +// tidy-alphabetical-end use std::path::{Path, PathBuf}; |
