remove stabilized feature flags

This commit is contained in:
Simon Renblad 2024-12-23 14:32:57 +08:00
parent ae61abbf06
commit 3a052b8e4f
3 changed files with 0 additions and 6 deletions

View File

@ -1,7 +1,6 @@
#![no_std]
#![no_main]
#![feature(naked_functions)]
#![feature(asm)]
#![feature(inline_const)]
extern crate alloc;

View File

@ -1,9 +1,6 @@
#![no_std]
#![feature(never_type)]
#![feature(global_asm)]
#![feature(asm)]
#![feature(inline_const)]
#![feature(const_fn_trait_bound)]
extern crate alloc;

View File

@ -3,8 +3,6 @@
#![feature(alloc_error_handler)]
#![feature(panic_info_message)]
#![feature(naked_functions)]
#![feature(global_asm)]
#![feature(asm)]
pub extern crate alloc;
pub extern crate compiler_builtins;