gracekill 0.1.2

A minimal utility to gracefully terminate processes with graceful escalation of SIGTERM to SIGKILL
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "gracekill"
version = "0.1.2"
authors = ["Pato Lankenau <rust@p.lankenau.io>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A minimal utility to gracefully terminate processes with graceful escalation of SIGTERM to SIGKILL"
readme = "README.md"
keywords = [
    "process",
    "signal",
    "kill",
    "unix",
    "graceful",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/pato/gracekill"

[[bin]]
name = "gracekill"
path = "src/main.rs"

[dependencies.nix]
version = "0.30"
features = [
    "signal",
    "process",
]

[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true