summaryrefslogtreecommitdiff
path: root/embassy-futures/src/lib.rs
blob: 48c9c85747f9fe6a8bc7dab71ae67f000387692d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#![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 select;
mod yield_now;

pub use select::*;
pub use yield_now::*;