Go to file
John Nunley a125498595
v2.8.0
Signed-off-by: John Nunley <dev@notgull.net>
2023-08-09 19:15:28 -07:00
.github Minimize GITHUB_TOKEN permissions 2023-03-26 16:36:56 +09:00
src Add smol-rs logo (#52) 2023-07-17 14:40:02 +09:00
tests feat: Add reference-counted versions of `RwLock` guards (#47) 2023-06-13 21:18:11 -07:00
.gitignore Merge crates into a single repo 2020-09-21 18:58:31 +02:00
CHANGELOG.md v2.8.0 2023-08-09 19:15:28 -07:00
Cargo.toml v2.8.0 2023-08-09 19:15:28 -07: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.