2022-08-22 21:46:09 +02:00
|
|
|
#![no_std]
|
2022-08-23 14:05:17 +02:00
|
|
|
#![doc = include_str!("../README.md")]
|
2022-08-22 21:46:09 +02:00
|
|
|
#![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;
|
2022-08-22 21:46:09 +02:00
|
|
|
mod yield_now;
|
|
|
|
|
2022-08-28 22:57:35 +02:00
|
|
|
pub mod join;
|
|
|
|
pub mod select;
|
|
|
|
|
2022-08-28 22:51:52 +02:00
|
|
|
pub use block_on::*;
|
2022-08-22 21:46:09 +02:00
|
|
|
pub use yield_now::*;
|