[package]
edition = "2021"
rust-version = "1.95"
name = "running-process-probe"
version = "4.10.6"
build = "build.rs"
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Sidecar / file-hook tier for running-process (#539 follow-up #551)"
homepage = "https://github.com/zackees/running-process"
readme = false
license = "BSD-3-Clause"
repository = "https://github.com/zackees/running-process"
[features]
default = []
embed-helper = [
"dep:dirs",
"dep:blake3",
]
[lib]
name = "running_process_probe"
path = "src/lib.rs"
[[bin]]
name = "running-process-probe-agent"
path = "src/bin/helper.rs"
[[test]]
name = "crash_handler_test"
path = "tests/crash_handler_test.rs"
[[test]]
name = "inject_smoke_test"
path = "tests/inject_smoke_test.rs"
[[test]]
name = "interposer_diagnostic_windows"
path = "tests/interposer_diagnostic_windows.rs"
[[test]]
name = "interposer_integration_linux"
path = "tests/interposer_integration_linux.rs"
[[test]]
name = "interposer_integration_macos"
path = "tests/interposer_integration_macos.rs"
[[test]]
name = "interposer_integration_windows"
path = "tests/interposer_integration_windows.rs"
[[test]]
name = "wire_roundtrip"
path = "tests/wire_roundtrip.rs"
[dependencies.blake3]
version = "1.8.7"
optional = true
[dependencies.crash-handler]
version = "0.7"
[dependencies.dirs]
version = "6"
optional = true
[dependencies.framehop]
version = "0.13"
[dependencies.getrandom]
version = "0.4"
[dependencies.prost]
version = "0.14"
[dependencies.thiserror]
version = "2"
[dev-dependencies.libc]
version = "0.2"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[build-dependencies.prost-build]
version = "0.14"
[build-dependencies.protox]
version = "0.9"
[target.'cfg(any(target_os = "linux", target_os = "macos"))'.dependencies.libc]
version = "0.2"
[target.'cfg(any(target_os = "linux", target_os = "macos"))'.dependencies.object]
version = "0.36"
features = [
"read",
"std",
]
default-features = false
[target.'cfg(target_os = "macos")'.dependencies.mach2]
version = "0.4"
[target.'cfg(target_os = "windows")'.dependencies.libc]
version = "0.2"
[target.'cfg(target_os = "windows")'.dependencies.winapi]
version = "0.3"
features = [
"handleapi",
"memoryapi",
"processthreadsapi",
"psapi",
"tlhelp32",
"winnt",
]
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
version = "0.61"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_System_Diagnostics_Debug",
"Win32_System_Kernel",
"Win32_System_IO",
"Win32_System_LibraryLoader",
"Win32_System_Memory",
"Win32_Storage_FileSystem",
"Win32_System_SystemInformation",
"Win32_System_Threading",
]
[lints.clippy]
disallowed_methods = "deny"