1 | [package] |
2 | name = "parking" |
3 | # When publishing a new version: |
4 | # - Update CHANGELOG.md |
5 | # - Create "v2.x.y" git tag |
6 | version = "2.2.0" |
7 | authors = [ |
8 | "Stjepan Glavina <stjepang@gmail.com>" , |
9 | "The Rust Project Developers" , |
10 | ] |
11 | edition = "2018" |
12 | rust-version = "1.51" |
13 | description = "Thread parking and unparking" |
14 | license = "Apache-2.0 OR MIT" |
15 | repository = "https://github.com/smol-rs/parking" |
16 | homepage = "https://github.com/smol-rs/parking" |
17 | documentation = "https://docs.rs/parking" |
18 | keywords = ["park" , "notify" , "thread" , "wake" , "condition" ] |
19 | categories = ["concurrency" ] |
20 | exclude = ["/.*" ] |
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] |
26 | version = "0.7" |
27 | optional = true |
28 | |
29 | [dev-dependencies] |
30 | easy-parallel = "3.0.0" |
31 | |