aboutsummaryrefslogtreecommitdiff
path: root/rtic-common/src/lib.rs
blob: e8f5af7e7169a7cc634676e34a48de2ae96b80c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
//! Crate

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

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

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