cargo : atomic-waker @ 1.1.2
PE Patrick Elsen signed 2026-05-27 published 2026-05-27

Cargo.toml.orig

32 lines · plain

[package]name = "atomic-waker"# When publishing a new version:# - Update CHANGELOG.md# - Create "v1.x.y" git tagversion = "1.1.2"authors = [  "Stjepan Glavina <stjepang@gmail.com>",  "Contributors to futures-rs",]edition = "2018"rust-version = "1.36"description = "A synchronization primitive for task wakeup"license = "Apache-2.0 OR MIT"repository = "https://github.com/smol-rs/atomic-waker"keywords = ["waker", "notify", "wake", "futures", "async"]categories = ["asynchronous", "concurrency"]exclude = ["/.*"][dependencies]# Uses portable-atomic polyfill atomics on targets without themportable-atomic = { version = "1", optional = true, default-features = false }[dev-dependencies]criterion = { version = "0.4.0", default-features = false, features = ["cargo_bench_support"] }futures = "0.3.5"rayon = "1.7.0"[[bench]]name = "waker"harness = false