1[package]
2name = "parking"
3# When publishing a new version:
4# - Update CHANGELOG.md
5# - Create "v2.x.y" git tag
6version = "2.2.0"
7authors = [
8 "Stjepan Glavina <stjepang@gmail.com>",
9 "The Rust Project Developers",
10]
11edition = "2018"
12rust-version = "1.51"
13description = "Thread parking and unparking"
14license = "Apache-2.0 OR MIT"
15repository = "https://github.com/smol-rs/parking"
16homepage = "https://github.com/smol-rs/parking"
17documentation = "https://docs.rs/parking"
18keywords = ["park", "notify", "thread", "wake", "condition"]
19categories = ["concurrency"]
20exclude = ["/.*"]
21
22# The `loom` feature, combined with the `loom` rustflag, enables a reimplementation
23# of `parking` using `loom`. This feature is perma-unstable and should not be used
24# in stable code.
25[target.'cfg(loom)'.dependencies.loom]
26version = "0.7"
27optional = true
28
29[dev-dependencies]
30easy-parallel = "3.0.0"
31