[package]
edition = "2021"
rust-version = "1.95"
name = "running-process-platform-internal"
version = "4.10.4"
build = "build.rs"
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 = "README.md"
license = "BSD-3-Clause"
repository = "https://github.com/zackees/running-process"
[features]
conpty-sidecar = [
"pty",
"dep:dirs",
"dep:sha2",
"dep:ureq",
"dep:zstd",
"dep:tar",
]
default = []
pty = ["dep:portable-pty"]
session-relay = [
"dep:interprocess",
"tokio/net",
]
[lib]
name = "running_process_platform_internal"
path = "src/lib.rs"
[[test]]
name = "shell_command"
path = "tests/shell_command.rs"
[dependencies.interprocess]
version = "2"
features = ["tokio"]
optional = true
[dependencies.portable-pty]
version = "0.9"
optional = true
[dependencies.sysinfo]
version = "0.30"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"io-util",
"macros",
"process",
"rt",
]
default-features = false
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"io-util",
"macros",
"process",
"rt",
"rt-multi-thread",
"time",
]
default-features = false
[build-dependencies.toml]
version = "0.8"
[target.'cfg(target_os = "linux")'.dependencies.png]
version = "0.17"
[target.'cfg(target_os = "linux")'.dependencies.x11rb]
version = "0.13"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.dirs]
version = "6"
optional = true
[target."cfg(windows)".dependencies.sha2]
version = "0.10"
optional = true
[target."cfg(windows)".dependencies.tar]
version = "0.4"
optional = true
default-features = false
[target."cfg(windows)".dependencies.ureq]
version = "2"
features = ["tls"]
optional = true
default-features = false
[target."cfg(windows)".dependencies.winapi]
version = "0.3"
features = [
"consoleapi",
"fileapi",
"handleapi",
"ioapiset",
"jobapi2",
"minwindef",
"namedpipeapi",
"processenv",
"processthreadsapi",
"synchapi",
"tlhelp32",
"winbase",
"wincon",
"wincontypes",
"windef",
"winerror",
"winnt",
"winuser",
]
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61"
features = [
"Wdk_System_Threading",
"Win32_Foundation",
"Win32_Security",
"Win32_Security_Authorization",
"Win32_Storage_FileSystem",
"Win32_System_Console",
"Win32_System_Environment",
"Win32_System_IO",
"Win32_System_JobObjects",
"Win32_System_LibraryLoader",
"Win32_System_Memory",
"Win32_System_Pipes",
"Win32_System_Threading",
]
[target."cfg(windows)".dependencies.zstd]
version = "0.13"
optional = true
default-features = false
[lints.clippy]
disallowed_methods = "deny"