embassy/embassy-futures/src/lib.rs

15 lines
261 B
Rust
Raw Normal View History

#![no_std]
2022-08-23 14:05:17 +02:00
#![doc = include_str!("../README.md")]
#![warn(missing_docs)]
// This mod MUST go first, so that the others see its macros.
pub(crate) mod fmt;
2022-08-28 22:51:52 +02:00
mod block_on;
mod select;
mod yield_now;
2022-08-28 22:51:52 +02:00
pub use block_on::*;
pub use select::*;
pub use yield_now::*;