crosswin 0.1.0

Async-friendly Windows primitives for Rust (MVP: process enumeration).
[dependencies.tokio]
features = ["rt-multi-thread", "macros"]
version = "1"

[dependencies.windows]
features = ["Win32_Foundation", "Win32_System_Diagnostics_ToolHelp", "Win32_System_Threading"]
optional = true
version = "0.62"

[dev-dependencies.tokio]
features = ["rt-multi-thread", "macros"]
version = "1"

[[example]]
name = "list_processes"
path = "examples/list_processes.rs"

[features]
default = ["win32", "process", "tokio"]
process = []
tokio = []
win32 = ["windows"]

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

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["os::windows-apis", "api-bindings"]
description = "Async-friendly Windows primitives for Rust (MVP: process enumeration)."
documentation = "https://docs.rs/crosswin"
edition = "2021"
keywords = ["windows", "win32", "async", "process"]
license = "MIT OR Apache-2.0"
name = "crosswin"
readme = "README.md"
repository = "https://github.com/M1tsumi/crosswin"
version = "0.1.0"

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

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