[package]
name = "prick-exec"
description = "Child process launch, signal handling and environment guards for `prk run`."
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
authors.workspace = true
[dependencies]
prick-core = { workspace = true }
secrecy = { workspace = true }
thiserror = { workspace = true }
[target.'cfg(unix)'.dependencies]
libc = { workspace = true }
[target.'cfg(windows)'.dependencies]
which = { workspace = true }
windows-sys = { workspace = true, features = [
"Win32_Foundation",
"Win32_Security",
"Win32_Security_Authorization",
"Win32_System_Console",
"Win32_System_JobObjects",
"Win32_System_Memory",
"Win32_System_Threading",
] }
[dev-dependencies]
tempfile = { workspace = true }
[[bin]]
name = "prick-exec-child"
path = "src/bin/child.rs"
[lints]
workspace = true