[package]
edition = "2024"
rust-version = "1.98"
name = "windows-threadpool-sys"
version = "0.1.3"
authors = ["Mike Grier"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Memory-safe access to the Windows thread pool APIs."
homepage = "https://github.com/MikeGrier/windows-threadpool-sys"
documentation = "https://docs.rs/windows-threadpool-sys"
readme = "README.md"
keywords = [
"windows",
"threadpool",
"asynchronous",
"ffi",
]
categories = [
"api-bindings",
"os::windows-apis",
]
license = "MIT"
repository = "https://github.com/MikeGrier/windows-threadpool-sys"
resolver = "2"
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = ["x86_64-pc-windows-msvc"]
[lib]
name = "windows_threadpool_sys"
path = "src/lib.rs"
[[test]]
name = "callback_panic_aborts"
path = "tests/callback_panic_aborts.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[[test]]
name = "timer_stress"
path = "tests/timer_stress.rs"
[[test]]
name = "tp_io_behavioral_matrix"
path = "tests/tp_io_behavioral_matrix.rs"
[[test]]
name = "tp_io_operation_identity"
path = "tests/tp_io_operation_identity.rs"
[[test]]
name = "wait_custom_close"
path = "tests/wait_custom_close.rs"
[dependencies.windows-overlapped-io-sys]
version = "0.1.3"
default-features = false
[dependencies.windows-sys]
version = "0.61.2"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_System_IO",
"Win32_System_Threading",
]
default-features = false
[dev-dependencies.windows-sys]
version = "0.61.2"
features = [
"Win32_Foundation",
"Win32_System_IO",
"Win32_System_Threading",
"Win32_Security",
"Win32_Storage_FileSystem",
"Win32_System_Pipes",
]
default-features = false