Features in one attribute

master
ondra05 2022-06-16 00:19:36 +02:00
parent 656496d5c0
commit aeae6e51cf
1 changed files with 7 additions and 5 deletions

View File

@ -4,11 +4,13 @@
//!
#![no_std]
#![feature(abi_x86_interrupt)]
#![feature(alloc_error_handler)]
#![feature(prelude_import)]
#![feature(asm_sym)] // Needed for riscv
#![feature(naked_functions)]
#![feature(
abi_x86_interrupt,
alloc_error_handler,
asm_sym, // Needed for RISC-V
naked_functions,
prelude_import,
)]
#[macro_use]
pub extern crate log;