embassy_futures/
lib.rs

1#![no_std]
2#![doc = include_str!("../README.md")]
3#![warn(missing_docs)]
4
5// This mod MUST go first, so that the others see its macros.
6pub(crate) mod fmt;
7
8mod block_on;
9mod yield_now;
10
11pub mod join;
12pub mod select;
13
14pub use block_on::*;
15pub use yield_now::*;