aboutsummaryrefslogtreecommitdiff
path: root/rtic-common/src/lib.rs
blob: 2dd96731c2d5e59d5df8392d45511aa8a00920b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Utility structs that can be useful to other subcrates.

#![no_std]
#![deny(missing_docs)]
//deny_warnings_placeholder_for_ci

#[cfg(test)]
#[macro_use]
extern crate std;

pub mod dropper;
pub mod wait_queue;
pub mod waker_registration;