async-lock/Cargo.toml

34 lines
935 B
TOML
Raw Permalink Normal View History

2020-05-17 15:41:54 +00:00
[package]
name = "async-lock"
2021-04-16 15:14:03 +00:00
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v3.x.y" git tag
version = "3.3.0"
2020-05-17 15:41:54 +00:00
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
2024-01-06 18:21:19 +00:00
edition = "2021"
rust-version = "1.60"
2020-08-29 13:19:32 +00:00
description = "Async synchronization primitives"
2020-05-17 15:41:54 +00:00
license = "Apache-2.0 OR MIT"
2020-12-26 14:47:13 +00:00
repository = "https://github.com/smol-rs/async-lock"
2020-10-08 12:43:15 +00:00
keywords = ["lock", "mutex", "rwlock", "semaphore", "barrier"]
2020-05-17 15:41:54 +00:00
categories = ["asynchronous", "concurrency"]
2022-01-08 12:45:51 +00:00
exclude = ["/.*"]
2020-05-17 15:41:54 +00:00
[dependencies]
event-listener = { version = "5.0.0", default-features = false }
event-listener-strategy = { version = "0.5.0", default-features = false }
pin-project-lite = "0.2.11"
2020-09-21 16:58:31 +00:00
[features]
default = ["std"]
std = ["event-listener/std", "event-listener-strategy/std"]
2020-09-21 16:58:31 +00:00
2020-10-08 12:43:15 +00:00
[dev-dependencies]
fastrand = "2.0.0"
flume = "0.11.0"
futures-lite = "2.0.0"
waker-fn = "1.1.0"
[target.'cfg(target_family = "wasm")'.dev-dependencies]
2022-01-08 12:45:51 +00:00
wasm-bindgen-test = "0.3"