mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-29 15:04:32 +01:00
11 lines
173 B
Rust
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;
|