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