Go to file
Taiki Endo 5a89518c9d Release 2.6.0 2022-10-26 01:36:49 +09:00
.github/workflows Fix CI failure on 1.43 2022-07-30 13:43:52 +09:00
src Do not copy data before dropping (#28) 2022-10-25 22:38:24 +09:00
tests Simplify wasm tests 2022-10-25 21:59:55 +09:00
.clippy.toml Clean up CI config 2022-01-08 21:45:51 +09:00
.gitignore Merge crates into a single repo 2020-09-21 18:58:31 +02:00
CHANGELOG.md Release 2.6.0 2022-10-26 01:36:49 +09:00
Cargo.toml Release 2.6.0 2022-10-26 01:36:49 +09:00
LICENSE-APACHE Initial commit 2020-05-17 17:41:54 +02:00
LICENSE-MIT Initial commit 2020-05-17 17:41:54 +02:00
README.md Update license badge to match Cargo.toml 2021-02-14 13:38:47 +09:00

README.md

async-lock

Build License Cargo Documentation

Async synchronization primitives.

This crate provides the following primitives:

  • Barrier - enables tasks to synchronize all together at the same time.
  • Mutex - a mutual exclusion lock.
  • RwLock - a reader-writer lock, allowing any number of readers or a single writer.
  • Semaphore - limits the number of concurrent operations.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.