[package]
edition = "2021"
rust-version = "1.85"
name = "running-process-platform-internal"
version = "4.9.0"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Blessed platform process operations for running-process (implementation detail)"
homepage = "https://github.com/zackees/running-process"
readme = false
license = "BSD-3-Clause"
repository = "https://github.com/zackees/running-process"
[lib]
name = "running_process_platform_internal"
path = "src/lib.rs"
[dependencies.tokio]
version = "1"
features = [
"io-util",
"macros",
"process",
"rt",
]
default-features = false
[dev-dependencies.tokio]
version = "1"
features = [
"io-util",
"macros",
"process",
"rt",
"rt-multi-thread",
"time",
]
default-features = false
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.59"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_System_Console",
"Win32_System_JobObjects",
"Win32_System_Threading",
]
[lints.clippy]
disallowed_methods = "deny"