From 6045b0cc590366145a406c50b5fd77047cdf0819 Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Tue, 3 Oct 2023 12:23:40 +0200 Subject: [PATCH] Remove unused feature gates --- src/main.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index 73fb69e3b8..612f767099 100644 --- a/src/main.rs +++ b/src/main.rs @@ -44,15 +44,12 @@ #![feature(alloc_error_handler)] #![feature(allocator_api)] -#![feature(array_chunks)] -#![feature(iter_array_chunks)] #![feature(asm_const)] // TODO: Relax requirements of most asm invocations #![feature(const_option)] #![feature(const_refs_to_cell)] #![feature(int_roundings)] #![feature(let_chains)] #![feature(naked_functions)] -#![feature(slice_ptr_get, slice_ptr_len)] #![feature(sync_unsafe_cell)] #![no_std] #![no_main]