1//! Rust Microcontroller Operating System (RuCOS) Kernel 2 3#![cfg_attr(not(test), no_std)] 4 5pub mod kernel; 6mod task; 7 8pub use kernel::Kernel;