[go: up one dir, main page]

parking 2.1.0

Thread parking and unparking
Documentation
[package]
name = "parking"
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v2.x.y" git tag
version = "2.1.0"
authors = [
  "Stjepan Glavina <stjepang@gmail.com>",
  "The Rust Project Developers",
]
edition = "2018"
rust-version = "1.39"
description = "Thread parking and unparking"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/smol-rs/parking"
homepage = "https://github.com/smol-rs/parking"
documentation = "https://docs.rs/parking"
keywords = ["park", "notify", "thread", "wake", "condition"]
categories = ["concurrency"]
exclude = ["/.*"]

# 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.5"
optional = true

[dev-dependencies]
easy-parallel = "3.0.0"