[package]
edition = "2021"
rust-version = "1.85"
name = "running-process-core"
version = "3.0.17"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Native process runtime for running-process"
homepage = "https://github.com/zackees/running-process"
readme = false
license = "BSD-3-Clause"
repository = "https://github.com/zackees/running-process"
[features]
default = []
originator-scan = []
[lib]
name = "running_process_core"
path = "src/lib.rs"
[[test]]
name = "containment_test"
path = "tests/containment_test.rs"
[[test]]
name = "originator_test"
path = "tests/originator_test.rs"
[[test]]
name = "process_core_test"
path = "tests/process_core_test.rs"
[[test]]
name = "pty_conhost_job_test"
path = "tests/pty_conhost_job_test.rs"
[dependencies.libc]
version = "0.2"
[dependencies.portable-pty]
version = "0.9"
[dependencies.sysinfo]
version = "0.30"
[dependencies.thiserror]
version = "2"
[dependencies.winapi]
version = "0.3"
features = [
"handleapi",
"jobapi2",
"processthreadsapi",
"winnt",
"minwindef",
"windef",
"winuser",
"consoleapi",
"processenv",
"synchapi",
"winbase",
"wincon",
"tlhelp32",
]
[dev-dependencies.serde_json]
version = "1"