1[package]
2name = "atomic-waker"
3# When publishing a new version:
4# - Update CHANGELOG.md
5# - Create "v1.x.y" git tag
6version = "1.1.2"
7authors = [
8 "Stjepan Glavina <stjepang@gmail.com>",
9 "Contributors to futures-rs",
10]
11edition = "2018"
12rust-version = "1.36"
13description = "A synchronization primitive for task wakeup"
14license = "Apache-2.0 OR MIT"
15repository = "https://github.com/smol-rs/atomic-waker"
16keywords = ["waker", "notify", "wake", "futures", "async"]
17categories = ["asynchronous", "concurrency"]
18exclude = ["/.*"]
19
20[dependencies]
21# Uses portable-atomic polyfill atomics on targets without them
22portable-atomic = { version = "1", optional = true, default-features = false }
23
24[dev-dependencies]
25criterion = { version = "0.4.0", default-features = false, features = ["cargo_bench_support"] }
26futures = "0.3.5"
27rayon = "1.7.0"
28
29[[bench]]
30name = "waker"
31harness = false
32