-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (22 loc) · 896 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
[package]
name = "valet_parking"
version = "0.1.0"
authors = ["Paul Dicker <[email protected]>"]
edition = "2018"
description = "Croos platform thread parking"
readme = "README.md"
documentation = "https://docs.rs/valet_parking"
repository = "https://github.com/pitdicker/valet_parking"
keywords = ["thread", "park", "futex"]
categories = ["Concurrency", "no_std"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
exclude = [".travis.yml"]
[features]
fallback = []
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["winnt", "ntstatus", "minwindef",
"winerror", "winbase", "errhandlingapi", "handleapi"] }
[target.'cfg(unix)'.dependencies]
libc = "0.2.55" # First version with `FUTEX_PRIVATE_FLAG`
[target.'cfg(target_os = "redox")'.dependencies]
redox_syscall = "0.1.1" # First version with `syscall::call`