rtic_common/
lib.rs

1//! Utility structs that can be useful to other subcrates.
2
3#![no_std]
4#![deny(missing_docs)]
5
6#[cfg(test)]
7#[macro_use]
8extern crate std;
9
10pub mod dropper;
11pub mod wait_queue;
12pub mod waker_registration;