From a1b2cb7669d3d68d129372564284b2d0ae38b3b3 Mon Sep 17 00:00:00 2001 From: yvt Date: Wed, 29 Mar 2023 01:02:19 +0900 Subject: [PATCH] refactor(core): remove `#![feature(nonnull_slice_from_raw_parts)]` The `nonnull_slice_from_raw_parts` feature was stabilized by [rust-lang/rust#97506][1]. [1]: https://github.com/rust-lang/rust/pull/97506 --- src/r3_core/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/r3_core/src/lib.rs b/src/r3_core/src/lib.rs index d13ba130d6..38d738566e 100644 --- a/src/r3_core/src/lib.rs +++ b/src/r3_core/src/lib.rs @@ -5,7 +5,6 @@ #![feature(const_slice_from_raw_parts_mut)] #![feature(maybe_uninit_array_assume_init)] #![feature(const_maybe_uninit_as_mut_ptr)] -#![feature(nonnull_slice_from_raw_parts)] #![feature(const_intoiterator_identity)] #![feature(type_changing_struct_update)] #![feature(maybe_uninit_uninit_array)]