improvement: fix `cargo doc` invocation warning by making `no_main` conditional

pull/2/head
Erich Gubler 2020-07-09 20:26:51 -06:00
parent 92aa58f386
commit 57be162906
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@
#![deny(unsafe_code)]
#![no_std]
#![no_main]
#![cfg_attr(not(doc), no_main)]
//use panic_halt as _;
use core::panic::PanicInfo;