From 9854d84ed0ff10efd4d1765f1d43ce87ab02552a Mon Sep 17 00:00:00 2001 From: Bailey Stevens Date: Thu, 10 Oct 2024 00:30:33 -0400 Subject: [PATCH] Updates feature gate to use new_zeroed_alloc Needed in order to build with newest nightly More specific version of new_uninit introduced in rust-lang/rust#129396 --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 9e4ecf9..732476c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,7 +3,7 @@ maybe_uninit_uninit_array, maybe_uninit_array_assume_init, portable_simd, - new_uninit + new_zeroed_alloc )] #![allow(incomplete_features)] #![warn(clippy::all)]