embassy/embassy-futures
2024-01-11 18:18:35 +01:00
..
src Sync all fmt.rs files. 2023-08-30 01:37:18 +02:00
Cargo.toml Bump embassy-futures 0.1.0 -> 0.1.1 2023-11-13 11:25:11 +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.