mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
55083fb3cc
736: More `xtasks` and add examples to `rtic` repo r=korken89 a=datdenkikniet This was in #732 before, but decluttering that PR seemed sensible Co-authored-by: datdenkikniet <jcdra1@gmail.com>
12 lines
205 B
Rust
12 lines
205 B
Rust
//! Utility structs that can be useful to other subcrates.
|
|
|
|
#![no_std]
|
|
#![deny(missing_docs)]
|
|
|
|
#[cfg(test)]
|
|
#[macro_use]
|
|
extern crate std;
|
|
|
|
pub mod dropper;
|
|
pub mod wait_queue;
|
|
pub mod waker_registration;
|