| 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. |
| 6 | pub(crate) mod fmt; |
| 7 | |
| 8 | mod block_on; |
| 9 | mod yield_now; |
| 10 | |
| 11 | pub mod join; |
| 12 | pub mod select; |
| 13 | |
| 14 | pub use block_on::*; |
| 15 | pub use yield_now::*; |
| 16 |
