diff options
| author | Dario Nieuwenhuis <[email protected]> | 2022-08-22 21:46:09 +0200 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2022-08-22 22:18:13 +0200 |
| commit | 21072bee48ff6ec19b79e0d9527ad8cc34a4e9e0 (patch) | |
| tree | b5b8c0f4b3571989b5fd15152be5639f4334c282 /embassy-futures/src/lib.rs | |
| parent | 61356181b223e95f289ca3af3a038a699cde2112 (diff) | |
split `embassy-util` into `embassy-futures`, `embassy-sync`.
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::*; | ||
