Make the std-stub optional
This allows people to provide their own `panic_handler`
This commit is contained in:
parent
572fb8be7c
commit
c02a95baa5
|
@ -19,8 +19,11 @@ build = "core_generator/build.rs"
|
|||
|
||||
keywords = ["avr", "arduino", "uno"]
|
||||
|
||||
[features]
|
||||
default = ["avr-std-stub"]
|
||||
|
||||
[dependencies]
|
||||
avr-std-stub = "1.0"
|
||||
avr-std-stub = { version = "1.0", optional = true }
|
||||
target-cpu-macro = "0.1"
|
||||
|
||||
[build-dependencies]
|
||||
|
|
|
@ -9,8 +9,6 @@
|
|||
|
||||
#![no_std]
|
||||
|
||||
extern crate avr_std_stub;
|
||||
|
||||
pub use self::register::{Register, RegisterBits, RegisterValue};
|
||||
pub use self::pin::{DataDirection, Pin};
|
||||
|
||||
|
|
Loading…
Reference in New Issue