[dependencies.tokio]
features = ["full"]
optional = true
version = "1.36.0"
[dependencies.tracing]
version = "0.1.40"
[dev-dependencies.tokio]
features = ["test-util"]
version = "1.36.0"
[dev-dependencies.tracing-test]
features = ["no-env-filter"]
version = "0.2.4"
[features]
blocking = []
default = ["blocking"]
tokio = ["dep:tokio"]
[package]
authors = ["oneofthezombies"]
description = "🌳 Kill Tree is a library designed to terminate a specified process and all its child processes recursively, operating independently of other commands like kill or taskkill."
edition = "2021"
keywords = ["process", "tree-kill", "kill", "taskkill", "terminate"]
license = "MIT"
name = "kill_tree"
readme = "README.md"
repository = "https://github.com/oneofthezombies/kill-tree"
version = "0.2.0"
[target."cfg(target_os = \"macos\")".build-dependencies.bindgen]
version = "0.69.2"
[target."cfg(unix)".dependencies.nix]
features = ["signal"]
version = "0.27.1"
[target."cfg(windows)".dependencies.windows]
features = ["Win32_Foundation", "Win32_System_Diagnostics_ToolHelp", "Win32_System_Threading"]
version = "0.52.0"