diff options
Diffstat (limited to 'embassy-futures/src/lib.rs')
| -rw-r--r-- | embassy-futures/src/lib.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/embassy-futures/src/lib.rs b/embassy-futures/src/lib.rs new file mode 100644 index 000000000..48c9c8574 --- /dev/null +++ b/embassy-futures/src/lib.rs | |||
| @@ -0,0 +1,12 @@ | |||
| 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 select; | ||
| 9 | mod yield_now; | ||
| 10 | |||
| 11 | pub use select::*; | ||
| 12 | pub use yield_now::*; | ||
