| 4 // We use unicode. We would like to use much more of it than Rust allows. |
4 // We use unicode. We would like to use much more of it than Rust allows. |
| 5 // Live with it. Embrace it. |
5 // Live with it. Embrace it. |
| 6 #![allow(uncommon_codepoints)] |
6 #![allow(uncommon_codepoints)] |
| 7 #![allow(mixed_script_confusables)] |
7 #![allow(mixed_script_confusables)] |
| 8 #![allow(confusable_idents)] |
8 #![allow(confusable_idents)] |
| 9 |
|
| 10 // We need BinaryHeap::retain from nightly |
|
| 11 #![feature(binary_heap_retain)] |
|
| 12 |
9 |
| 13 #![feature(maybe_uninit_uninit_array,maybe_uninit_array_assume_init,maybe_uninit_slice)] |
10 #![feature(maybe_uninit_uninit_array,maybe_uninit_array_assume_init,maybe_uninit_slice)] |
| 14 #![feature(try_trait_v2_residual,try_trait_v2)] |
11 #![feature(try_trait_v2_residual,try_trait_v2)] |
| 15 |
12 |
| 16 #![feature(array_methods)] |
13 #![feature(array_methods)] |