diff options
| author | Yuki Okushi <yuki.okushi@huawei.com> | 2021-06-22 06:30:16 +0900 |
|---|---|---|
| committer | Yuki Okushi <yuki.okushi@huawei.com> | 2021-07-23 18:08:26 +0900 |
| commit | 6761826b1bacf79959ed97d84686a47521e8a18f (patch) | |
| tree | 3cad4f9d8789382ca314f5c46f60c5090427a5f3 /compiler | |
| parent | 8d00be99802ff09ac5b0375b1b3a6bebf6c36b27 (diff) | |
| download | rust-6761826b1bacf79959ed97d84686a47521e8a18f.tar.gz rust-6761826b1bacf79959ed97d84686a47521e8a18f.zip | |
Sort features alphabetically
Diffstat (limited to 'compiler')
| -rw-r--r-- | compiler/rustc_data_structures/src/lib.rs | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/compiler/rustc_data_structures/src/lib.rs b/compiler/rustc_data_structures/src/lib.rs index 376513d3586..041d52aa20a 100644 --- a/compiler/rustc_data_structures/src/lib.rs +++ b/compiler/rustc_data_structures/src/lib.rs @@ -7,28 +7,28 @@ //! This API is completely unstable and subject to change. #![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")] +#![feature(allow_internal_unstable)] #![feature(array_windows)] +#![feature(associated_type_bounds)] +#![feature(auto_traits)] +#![feature(bool_to_option)] +#![feature(const_panic)] #![feature(control_flow_enum)] +#![feature(core_intrinsics)] +#![feature(extend_one)] +#![feature(hash_raw_entry)] #![feature(in_band_lifetimes)] +#![feature(iter_map_while)] +#![feature(maybe_uninit_uninit_array)] #![feature(min_specialization)] -#![feature(auto_traits)] +#![feature(min_type_alias_impl_trait)] +#![feature(new_uninit)] #![feature(nll)] -#![feature(allow_internal_unstable)] -#![feature(hash_raw_entry)] -#![feature(core_intrinsics)] +#![feature(once_cell)] #![feature(test)] -#![feature(associated_type_bounds)] #![feature(thread_id_value)] -#![feature(extend_one)] -#![feature(const_panic)] -#![feature(new_uninit)] -#![feature(once_cell)] -#![feature(maybe_uninit_uninit_array)] -#![feature(min_type_alias_impl_trait)] #![allow(rustc::default_hash_types)] #![deny(unaligned_references)] -#![feature(iter_map_while)] -#![feature(bool_to_option)] #[macro_use] extern crate tracing; |
