embassy/embassy-futures
Adam Simpkins 5178c24cf4 Fix embassy-futures test failure
Running `cargo test` in embassy-futures was failing.  The `no_run` tag
on this doc example caused it to still try and compile this example,
just not run it, and compilation failed.  This updates the example so
that it can successfully compile and run.
2024-04-14 22:30:14 +02:00
..
src Fix embassy-futures test failure 2024-04-14 22:30:14 +02:00
Cargo.toml Complete cargo.tomls more. 2024-01-12 00:32:47 +01:00
README.md Centralize license and MSRV boilerplate into the repo readme. 2024-01-11 18:18:35 +01:00

embassy-futures

An Embassy project.

Utilities for working with futures, compatible with no_std and not using alloc. Optimized for code size, ideal for embedded systems.

  • Future combinators, like join and select
  • Utilities to use async without a fully fledged executor: block_on and yield_now.

Interoperability

Futures from this crate can run on any executor.