rtic/rtic-sync/src/lib.rs
2023-04-16 13:08:46 +02:00

11 lines
173 B
Rust

//! Synchronization primitives for asynchronous contexts.
#![no_std]
#![deny(missing_docs)]
pub mod arbiter;
pub mod channel;
#[cfg(test)]
#[macro_use]
extern crate std;