thread-priority 1.2.0

Library for managing threads priority and schedule policies
Documentation
[dependencies.bitflags]
version = "2"

[dependencies.cfg-if]
version = "1"

[dependencies.log]
version = "0.4"

[dependencies.rustversion]
version = "1"

[dev-dependencies.rstest]
version = "0.19"

[lib]
name = "thread_priority"
path = "src/lib.rs"

[package]
authors = ["Victor Polevoy <fx@thefx.co>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["concurrency", "asynchronous", "os"]
description = "Library for managing threads priority and schedule policies"
documentation = "https://docs.rs/thread-priority/"
edition = "2021"
keywords = ["thread", "schedule", "priority", "pthread"]
license = "MIT"
name = "thread-priority"
readme = "README.md"
repository = "https://github.com/iddm/thread-priority"
rust-version = "1.67.1"
version = "1.2.0"

[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]
version = ">=0.2.123"

[target.'cfg(target_os = "vxworks")'.dependencies.libc]
version = ">=0.2.161"

[target."cfg(windows)".dependencies.libc]
version = ">=0.2.123"

[target."cfg(windows)".dependencies.winapi]
features = ["errhandlingapi", "processthreadsapi", "winnt", "minwindef", "winbase"]
version = "0.3"

[[test]]
name = "common"
path = "tests/common.rs"

[[test]]
name = "unix"
path = "tests/unix.rs"

[[test]]
name = "windows"
path = "tests/windows.rs"