embassy/embassy-futures/src/lib.rs
2022-08-29 01:00:22 +02:00

15 lines
261 B
Rust

#![no_std]
#![doc = include_str!("../README.md")]
#![warn(missing_docs)]
// This mod MUST go first, so that the others see its macros.
pub(crate) mod fmt;
mod block_on;
mod yield_now;
pub mod join;
pub mod select;
pub use block_on::*;
pub use yield_now::*;