mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-19 06:15:45 +01:00
Merge arbiter and channel into sync
This commit is contained in:
parent
c4ee8e8f02
commit
32b537aef6
16 changed files with 21 additions and 73 deletions
12
rtic-sync/src/lib.rs
Normal file
12
rtic-sync/src/lib.rs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
//! Synchronization primitives for asynchronous contexts.
|
||||
|
||||
#![no_std]
|
||||
#![deny(missing_docs)]
|
||||
//deny_warnings_placeholder_for_ci
|
||||
|
||||
pub mod arbiter;
|
||||
pub mod channel;
|
||||
|
||||
#[cfg(test)]
|
||||
#[macro_use]
|
||||
extern crate std;
|
||||
Loading…
Add table
Add a link
Reference in a new issue