Contains simple implementations of required language items that libstd
normally defines on other targets.
This fixes the following error when compiling for Rust:
``
error:
#[panic_handler]` function required, but not found
error: language item required, but not found: eh_personality
error: aborting due to 2 previous errors ```
Add the following to your crate's Cargo.toml
:
[dependencies]
avr-std-stub = "1.0"