`panic_handler` is now stable

Fixes the following warning:

"warning: the feature `panic_handler` has been stable since
1.30.0 and no longer requires an attribute to enable"
master
Paolo Teti 2018-09-13 10:10:52 +02:00
parent 5a88717b46
commit 8bfd4374b6
2 changed files with 1 additions and 2 deletions

View File

@ -1,6 +1,6 @@
// Hack of a crate until rust-lang/rust#51647 is fixed // Hack of a crate until rust-lang/rust#51647 is fixed
#![feature(no_core, panic_handler)] #![feature(no_core)]
#![no_core] #![no_core]
extern crate core; extern crate core;

View File

@ -11,7 +11,6 @@
#![feature(lang_items)] #![feature(lang_items)]
#![feature(start)] #![feature(start)]
#![feature(allocator_api)] #![feature(allocator_api)]
#![feature(panic_handler)]
#![cfg_attr(windows, feature(panic_unwind))] #![cfg_attr(windows, feature(panic_unwind))]
#![no_std] #![no_std]