mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-26 05:29:38 +01:00
12 lines
198 B
Rust
12 lines
198 B
Rust
//! Synchronization primitives for asynchronous contexts.
|
|
|
|
#![no_std]
|
|
#![deny(missing_docs)]
|
|
|
|
pub mod arbiter;
|
|
pub mod channel;
|
|
pub use portable_atomic;
|
|
|
|
#[cfg(test)]
|
|
#[macro_use]
|
|
extern crate std;
|