Skip to content

tisonkun/mea

Repository files navigation

Make Easy Async (Mea)

Crates.io Documentation MSRV 1.80 Apache 2.0 licensed Build Status

Overview

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.

Features

  • 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.

Installation

Add the dependency to your Cargo.toml via:

cargo add mea

Runtime Agnostic

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.

Thread Safety

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.

Minimum Supported Rust Version (MSRV)

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.

License

This project is licensed under Apache License, Version 2.0.

About

Mea provides async utilities that are runtime agnostic.

Topics

Resources

License

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published

Languages