-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (32 loc) · 1.05 KB
/
Cargo.toml
File metadata and controls
37 lines (32 loc) · 1.05 KB
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
34
35
36
37
[package]
name = "thread-priority"
version = "3.0.0"
authors = ["Victor Polevoy <fx@thefx.co>"]
description = "Library for managing threads priority and schedule policies"
repository = "https://github.com/iddm/thread-priority"
documentation = "https://docs.rs/thread-priority/"
readme = "README.md"
license = "MIT"
keywords = ["thread", "schedule", "priority", "pthread"]
categories = ["concurrency", "asynchronous", "os"]
edition = "2024"
rust-version = "1.85"
[dev-dependencies]
rstest = "0.25"
[dependencies]
log = "0.4"
cfg-if = "1"
rustversion = "1"
bitflags = "2"
[target.'cfg(any(target_os = "linux", target_os = "android", target_os = "macos", target_os = "ios", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies]
libc = ">=0.2.123"
[target.'cfg(target_os = "vxworks")'.dependencies]
libc = ">=0.2.161"
[target.'cfg(windows)'.dependencies]
libc = ">=0.2.123"
windows = { version = "0.61", features = [
"Win32",
"Win32_System",
"Win32_System_Threading",
"Win32_System_WindowsProgramming",
] }