CreateProcessW 0.1.2

Create and handle processes on Windows using the Win32 API
Documentation
[package]
name = "CreateProcessW"
version = "0.1.2"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Create and handle processes on Windows using the Win32 API"
repository = "https://github.com/yozhgoor/CreateProcessW"
homepage = "https://github.com/yozhgoor/CreateProcessW"
documentation = "https://docs.rs/CreateProcessW"
readme = "README.md"
keywords = ["winapi", "process", "command", "CreateProcessExW"]
categories = ["api-bindings", "os::windows-apis"]
include = ["src/**/*.rs", "README.md", "LICENSE.Apache-2.0", "LICENSE.MIT"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
thiserror = "1.0.30"

[dependencies.windows]
version = "0.28.0"
features = [
    "std",
    "Win32_Foundation",
    "Win32_Security",
    "Win32_System_Threading",
    "Win32_System_WindowsProgramming",
]

[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = ["x86_64-pc-windows-msvc"]