1//! # Embedded async helpers 2//! 3//! A collection of `static` firendly datastructures for helping async on embedded. 4 5#![deny(missing_docs)] 6#![no_std] 7 8pub mod fair_share; 9pub mod ssq; 10 11#[cfg(test)] 12mod tests { 13 14 #[test] 15 fn it_works() {} 16}