1//! ## CAN framework for microcontrollers 2//! 3 4#![no_std] 5#![warn(missing_docs)] 6 7#[cfg(test)] 8mod tests { 9 #[test] 10 fn none() {} 11}