Rename panic_implementation -> panic_handler

panic_implementation has been deprecated/renamed.
New name is panic_handler
This commit is contained in:
Paolo Teti 2018-09-01 20:12:41 +02:00
parent f3a13eb238
commit 50ea70d7d0
4 changed files with 6 additions and 6 deletions

View File

@ -10,7 +10,7 @@ test = false
cc = { optional = true, version = "1.0" }
[dev-dependencies]
panic-implementation = { path = 'crates/panic-implementation' }
panic-handler = { path = 'crates/panic-handler' }
[features]
default = ["compiler-builtins"]

View File

@ -1,5 +1,5 @@
[package]
name = "panic-implementation"
name = "panic-handler"
version = "0.1.0"
authors = ["Alex Crichton <alex@alexcrichton.com>"]

View File

@ -1,11 +1,11 @@
// Hack of a crate until rust-lang/rust#51647 is fixed
#![feature(no_core, panic_implementation)]
#![feature(no_core, panic_handler)]
#![no_core]
extern crate core;
#[panic_implementation]
#[panic_handler]
fn panic(_: &core::panic::PanicInfo) -> ! {
loop {}
}

View File

@ -11,11 +11,11 @@
#![feature(lang_items)]
#![feature(start)]
#![feature(allocator_api)]
#![feature(panic_implementation)]
#![feature(panic_handler)]
#![cfg_attr(windows, feature(panic_unwind))]
#![no_std]
extern crate panic_implementation;
extern crate panic_handler;
#[cfg(not(thumb))]
#[link(name = "c")]