mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-27 14:04:56 +01:00
12 lines
156 B
Rust
12 lines
156 B
Rust
//! Crate
|
|
|
|
#![no_std]
|
|
#![deny(missing_docs)]
|
|
|
|
#[cfg(test)]
|
|
#[macro_use]
|
|
extern crate std;
|
|
|
|
pub mod dropper;
|
|
pub mod wait_queue;
|
|
pub mod waker_registration;
|