simpleos 0.6.3

A Simple OS use for MCU, that implements single-threaded asynchronous runtime.
mod executor;
mod runnable;

#[cfg(all(feature = "panic-handler", not(test)))]
mod panic_handler;

// #[cfg(feature = "panic-handler")]
// pub use panic_handler::panic;

#[cfg(feature = "allocator-cstdlib")]
pub mod allocator_cstdlib;

#[cfg(feature = "allocator-cstdlib")]
pub use allocator_cstdlib::CAllocator;

#[allow(unused)]
pub use executor::*;

#[allow(unused)]
pub use runnable::*;