[package]
edition = "2024"
rust-version = "1.88.0"
name = "procutils-skill"
version = "0.2.0"
authors = ["Patrick Elsen <pelsen@xfbs.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Send a signal to processes selected by user, tty, pid or command (obsolete; prefer pkill)"
homepage = "https://rustutils.gitlab.io/procutils"
readme = "README.md"
keywords = [
"procutils",
"procps",
"skill",
"signal",
"linux",
]
categories = [
"command-line-utilities",
"os::linux-apis",
]
license = "MIT OR Apache-2.0"
repository = "https://gitlab.com/rustutils/procutils"
resolver = "2"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[lib]
name = "procutils_skill"
path = "src/lib.rs"
[[bin]]
name = "skill"
path = "src/main.rs"
[[test]]
name = "compat"
path = "tests/compat.rs"
[[test]]
name = "help"
path = "tests/help.rs"
[[test]]
name = "live"
path = "tests/live.rs"
[dependencies.clap]
version = "4"
features = [
"derive",
"wrap_help",
]
[dependencies.libc]
version = "0.2"
[dependencies.procutils-common]
version = "0.2.0"
[dependencies.regex]
version = "1"
[dev-dependencies.insta]
version = "1"
features = ["filters"]