On Tue, Oct 22, 2024 at 11:33 PM Danilo Krummrich <dakr@xxxxxxxxxx> wrote: > > +#![allow(stable_features)] This should be possible to remove (starting with v6.11 we do this in the command line). > +// Stable in Rust 1.83 > +#![feature(const_mut_refs)] > +#![feature(const_ptr_write)] > +#![feature(const_maybe_uninit_as_mut_ptr)] `const_refs_to_cell` is also stable in 1.83, so you could move it also here. Having said that, to be consistent, I would just put them above sorted with the rest -- the compiler can tell us and we track this elsewhere (just added the last two here to our issue #2 list). Either way, it is not a big deal, this list will be going away soon and we can celebrate! :) Thanks! Cheers, Miguel