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

Cargo.toml

57 lines · toml · 1 line annotation

# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO## When uploading crates to the registry Cargo will automatically# "normalize" Cargo.toml files for maximal compatibility# with all versions of Cargo and also rewrite `path` dependencies# to registry (e.g., crates.io) dependencies.## If you are reading this file be aware that the original Cargo.toml# will likely look very different (and much more reasonable).# See Cargo.toml.orig for the original contents.[package]edition = "2018"rust-version = "1.36"name = "atomic-waker"version = "1.1.2"authors = [    "Stjepan Glavina <stjepang@gmail.com>",    "Contributors to futures-rs",]exclude = ["/.*"]description = "A synchronization primitive for task wakeup"readme = "README.md"keywords = [    "waker",    "notify",    "wake",    "futures",    "async",]categories = [    "asynchronous",    "concurrency",]license = "Apache-2.0 OR MIT"repository = "https://github.com/smol-rs/atomic-waker"[[bench]]name = "waker"harness = false
[dependencies.portable-atomic]version = "1"optional = truedefault-features = false[dev-dependencies.criterion]version = "0.4.0"features = ["cargo_bench_support"]default-features = false
Line 42–50

Single optional runtime dependency: portable-atomic (no_std atomic polyfill), gated behind the portable-atomic feature with default-features=false. dev-dependencies (criterion, futures, rayon) are not shipped to consumers.

[dev-dependencies.futures]version = "0.3.5"[dev-dependencies.rayon]version = "1.7.0"