Mea (Make Easy Async) is a runtime-agnostic library providing essential synchronization primitives for asynchronous Rust programming. The library offers a collection of well-tested, efficient synchronization tools that work with any async runtime.
- Barrier: A synchronization primitive that enables tasks to wait until all participants arrive.
- Latch: A synchronization primitive that allows one or more tasks to wait until a set of operations completes.
- Mutex: A mutual exclusion primitive for protecting shared data.
- Semaphore: A synchronization primitive that controls access to a shared resource.
- WaitGroup: A synchronization primitive that allows waiting for multiple tasks to complete.
Add the dependency to your Cargo.toml
via:
cargo add mea
All synchronization primitives in this library are runtime-agnostic, meaning they can be used with any async runtime like Tokio, async-std, or others. This makes the library highly versatile and portable.
All types in this library implement Send
and Sync
, making them safe to share across thread boundaries. This is essential for concurrent programming where data needs to be accessed from multiple threads.
This crate is built against the latest stable release, and its minimum supported rustc version is 1.80.0.
The policy is that the minimum Rust version required to use this crate can be increased in minor version updates. For example, if Mea 1.0 requires Rust 1.20.0, then Mea 1.0.z for all values of z will also require Rust 1.20.0 or newer. However, Mea 1.y for y > 0 may require a newer minimum version of Rust.
This project is licensed under Apache License, Version 2.0.