parking/Cargo.toml

31 lines
882 B
TOML
Raw Permalink Normal View History

2020-05-16 14:13:43 +00:00
[package]
name = "parking"
2022-01-08 14:34:24 +00:00
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v2.x.y" git tag
version = "2.2.0"
2020-07-20 08:02:01 +00:00
authors = [
"Stjepan Glavina <stjepang@gmail.com>",
"The Rust Project Developers",
]
2020-05-16 14:13:43 +00:00
edition = "2018"
rust-version = "1.51"
2020-05-16 14:13:43 +00:00
description = "Thread parking and unparking"
license = "Apache-2.0 OR MIT"
2020-12-26 14:47:13 +00:00
repository = "https://github.com/smol-rs/parking"
homepage = "https://github.com/smol-rs/parking"
2020-05-16 14:13:43 +00:00
documentation = "https://docs.rs/parking"
keywords = ["park", "notify", "thread", "wake", "condition"]
categories = ["concurrency"]
2022-01-08 14:33:47 +00:00
exclude = ["/.*"]
2020-06-16 08:08:06 +00:00
2022-10-16 15:56:29 +00:00
# The `loom` feature, combined with the `loom` rustflag, enables a reimplementation
# of `parking` using `loom`. This feature is perma-unstable and should not be used
# in stable code.
[target.'cfg(loom)'.dependencies.loom]
version = "0.7"
2022-10-16 15:56:29 +00:00
optional = true
2020-06-16 08:08:06 +00:00
[dev-dependencies]
easy-parallel = "3.0.0"