1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # Embedded async helpers
//!
//! A collection of `static` firendly datastructures for helping async on embedded.

#![deny(missing_docs)]

pub mod fair_share;
pub mod ssq;

#[cfg(test)]
mod tests {

    #[test]
    fn it_works() {}
}