frugal_async 0.1.1

A crate of utilities for frugally working with async code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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](https://worm-blossom.org/frugal_async_rust.html) 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.