|
7 | 7 | //! This API is completely unstable and subject to change.
|
8 | 8 |
|
9 | 9 | #![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
|
| 10 | +#![feature(allow_internal_unstable)] |
10 | 11 | #![feature(array_windows)]
|
| 12 | +#![feature(associated_type_bounds)] |
| 13 | +#![feature(auto_traits)] |
| 14 | +#![feature(bool_to_option)] |
| 15 | +#![feature(const_panic)] |
11 | 16 | #![feature(control_flow_enum)]
|
| 17 | +#![feature(core_intrinsics)] |
| 18 | +#![feature(extend_one)] |
| 19 | +#![feature(hash_raw_entry)] |
12 | 20 | #![feature(in_band_lifetimes)]
|
| 21 | +#![feature(iter_map_while)] |
| 22 | +#![feature(maybe_uninit_uninit_array)] |
13 | 23 | #![feature(min_specialization)]
|
14 |
| -#![feature(auto_traits)] |
| 24 | +#![feature(min_type_alias_impl_trait)] |
| 25 | +#![feature(new_uninit)] |
15 | 26 | #![feature(nll)]
|
16 |
| -#![feature(allow_internal_unstable)] |
17 |
| -#![feature(hash_raw_entry)] |
18 |
| -#![feature(core_intrinsics)] |
| 27 | +#![feature(once_cell)] |
19 | 28 | #![feature(test)]
|
20 |
| -#![feature(associated_type_bounds)] |
21 | 29 | #![feature(thread_id_value)]
|
22 |
| -#![feature(extend_one)] |
23 |
| -#![feature(const_panic)] |
24 |
| -#![feature(new_uninit)] |
25 |
| -#![feature(once_cell)] |
26 |
| -#![feature(maybe_uninit_uninit_array)] |
27 |
| -#![feature(min_type_alias_impl_trait)] |
28 | 30 | #![allow(rustc::default_hash_types)]
|
29 | 31 | #![deny(unaligned_references)]
|
30 |
| -#![feature(iter_map_while)] |
31 |
| -#![feature(bool_to_option)] |
32 | 32 |
|
33 | 33 | #[macro_use]
|
34 | 34 | extern crate tracing;
|
|
0 commit comments