[package]
edition = "2024"
rust-version = "1.98"
name = "windows-thread-ambient-sys"
version = "0.2.0"
authors = ["Mike Grier"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Capture a Windows thread's ambient state and apply it on another thread."
homepage = "https://github.com/MikeGrier/windows-threadpool-sys"
documentation = "https://docs.rs/windows-thread-ambient-sys"
readme = "README.md"
keywords = [
"windows",
"thread",
"context",
"impersonation",
"ffi",
]
categories = [
"api-bindings",
"os::windows-apis",
"concurrency",
]
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_thread_ambient_sys"
path = "src/lib.rs"
[[test]]
name = "thread_pool"
path = "tests/thread_pool.rs"
[dependencies.windows-impersonation-token-sys]
version = "0.1.1"
[dependencies.windows-sys]
version = "0.61.2"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_Storage_FileSystem",
"Win32_System_Diagnostics_Debug",
"Win32_System_LibraryLoader",
"Win32_System_Threading",
]
default-features = false
[dev-dependencies.windows-threadpool-sys]
version = "0.1.3"