-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
33 lines (30 loc) · 960 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "parking"
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v2.x.y" git tag
version = "2.2.1"
authors = [
"Stjepan Glavina <stjepang@gmail.com>",
"The Rust Project Developers",
]
edition = "2018"
rust-version = "1.51"
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.7"
optional = true
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ["cfg(loom)"] }
[dev-dependencies]
easy-parallel = "3.0.0"