aboutsummaryrefslogtreecommitdiff
path: root/embassy-futures/src/lib.rs
blob: 45bea25290cecee657935d553a79f9770d0bbfae (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::*;