[[bin]]
name = "gracekill"
path = "src/main.rs"
[dependencies.libc]
version = "0.2"
[package]
authors = ["Pato Lankenau <rust@p.lankenau.io>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities"]
description = "A minimal utility to gracefully terminate processes with graceful escalation of SIGTERM to SIGKILL"
edition = "2024"
keywords = ["process", "signal", "kill", "unix", "graceful"]
license = "MIT"
name = "gracekill"
readme = "README.md"
repository = "https://github.com/pato/gracekill"
version = "0.1.0"
[profile.release]
codegen-units = 1
lto = true
opt-level = "z"
panic = "abort"
strip = true