Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
``` warning: the feature `new_uninit` has been stable since 1.82.0 and no longer requires an attribute to enable --> src/lib.rs:5:12 | 5 | #![feature(new_uninit)] | ^^^^^^^^^^ | = note: `#[warn(stable_features)]` on by default error[E0658]: use of unstable library feature 'new_zeroed_alloc' --> src/nvme.rs:20:41 | 20 | let p: Box<SectorBuffer> = unsafe { Box::new_zeroed().assume_init() }; | ^^^^^^^^^^^^^^^ | = note: see issue #129396 <rust-lang/rust#129396> for more information = help: add `#![feature(new_zeroed_alloc)]` to the crate attributes to enable ```
- Loading branch information