2
1
Fork
You've already forked frugal_async
0
Rust utilities for frugal async coding.
  • Rust 100%
2026年04月06日 15:44:30 +02:00
src Make the crate no_std 2026年04月06日 15:43:37 +02:00
.gitignore Initial commit 2025年04月09日 11:27:17 +02:00
Cargo.lock Bump version to 0.1.1 2026年04月06日 15:44:30 +02:00
Cargo.toml Bump version to 0.1.1 2026年04月06日 15:44:30 +02:00
CHANGELOG.md Bump version to 0.1.1 2026年04月06日 15:44:30 +02:00
LICENSE-APACHE Initial commit 2025年04月09日 11:27:17 +02:00
LICENSE-MIT Initial commit 2025年04月09日 11:27:17 +02:00
README.md Rename crate, add some docs 2025年10月18日 18:21:32 +02:00

Frugal Async

A crate of utilities for async rust, all based on some simplifying assumptions:

  • Nothing is cancel-safe.
  • No futures are Send.
  • Panics always abort.

See Frugal Async Rust for more details.

The "synchronisation primitives" in this crate are not about synchronisation across threads, but merely to let different parts of programs .await access to some data.