atomic-waker/Cargo.toml

24 lines
667 B
TOML
Raw Normal View History

2020-07-19 15:43:22 +00:00
[package]
name = "atomic-waker"
2022-01-08 13:26:15 +00:00
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v1.x.y" git tag
2020-07-19 15:43:22 +00:00
version = "1.0.0"
2020-07-20 07:57:05 +00:00
authors = [
"Stjepan Glavina <stjepang@gmail.com>",
"Contributors to futures-rs",
]
2020-07-19 15:43:22 +00:00
edition = "2018"
2022-01-08 13:25:51 +00:00
rust-version = "1.36"
2020-07-19 15:43:22 +00:00
description = "A synchronization primitive for task wakeup"
license = "Apache-2.0 OR MIT"
2020-12-26 14:47:13 +00:00
repository = "https://github.com/smol-rs/atomic-waker"
homepage = "https://github.com/smol-rs/atomic-waker"
2020-07-19 15:44:03 +00:00
documentation = "https://docs.rs/atomic-waker"
2020-07-19 15:43:22 +00:00
keywords = ["waker", "notify", "wake", "futures", "async"]
categories = ["asynchronous", "concurrency"]
2022-01-08 13:25:51 +00:00
exclude = ["/.*"]
2020-07-19 15:43:22 +00:00
[dev-dependencies]
futures = "0.3.5"