rtic/rtic-sync/src/lib.rs

13 lines
198 B
Rust
Raw Normal View History

2023-03-01 20:11:00 +01:00
//! Synchronization primitives for asynchronous contexts.
#![no_std]
#![deny(missing_docs)]
pub mod arbiter;
pub mod channel;
2023-09-27 21:39:35 +02:00
pub use portable_atomic;
2023-03-01 20:11:00 +01:00
#[cfg(test)]
#[macro_use]
extern crate std;