From 79470db46c170361de8feb209aba831359b22bbd Mon Sep 17 00:00:00 2001 From: yvt Date: Wed, 29 Mar 2023 01:01:54 +0900 Subject: [PATCH] fix(core): remove `#![feature(const_nonnull_slice_from_raw_parts)]` The `const_nonnull_slice_from_raw_parts` feature was merged into the `const_slice_from_raw_parts_mut` feature 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 3670e21450..d13ba130d6 100644 --- a/src/r3_core/src/lib.rs +++ b/src/r3_core/src/lib.rs @@ -1,6 +1,5 @@ #![feature(const_maybe_uninit_array_assume_init)] #![feature(const_fn_floating_point_arithmetic)] -#![feature(const_nonnull_slice_from_raw_parts)] #![feature(const_maybe_uninit_uninit_array)] #![feature(const_maybe_uninit_assume_init)] #![feature(const_slice_from_raw_parts_mut)]