1
0
Fork 0

remove unnecessary feature attributes

This commit is contained in:
Simon Renblad 2024-10-04 17:33:40 +08:00
parent 6c7be3e8a1
commit 4f24d94675
3 changed files with 0 additions and 5 deletions

View File

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

View File

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

View File

@ -1,9 +1,7 @@
#![no_std]
#![feature(alloc_error_handler)]
#![feature(panic_info_message)]
#![feature(naked_functions)]
#![feature(asm)]
pub extern crate alloc;
pub extern crate compiler_builtins;