1[package]
2name = "async-lock"
3# When publishing a new version:
4# - Update CHANGELOG.md
5# - Create "v2.x.y" git tag
6version = "2.8.0"
7authors = ["Stjepan Glavina <stjepang@gmail.com>"]
8edition = "2018"
9rust-version = "1.48"
10description = "Async synchronization primitives"
11license = "Apache-2.0 OR MIT"
12repository = "https://github.com/smol-rs/async-lock"
13keywords = ["lock", "mutex", "rwlock", "semaphore", "barrier"]
14categories = ["asynchronous", "concurrency"]
15exclude = ["/.*"]
16
17[dependencies]
18event-listener = "2.5.1"
19
20[dev-dependencies]
21async-channel = "1.5.0"
22fastrand = "2.0.0"
23futures-lite = "1.12.0"
24waker-fn = "1.1.0"
25
26[target.'cfg(any(target_arch = "wasm32", target_arch = "wasm64"))'.dev-dependencies]
27wasm-bindgen-test = "0.3"
28