[package]
edition = "2021"
name = "toomuch"
version = "0.0.3"
authors = ["Cao Tan Duc <ductancao.work@gmail.com>"]
build = false
exclude = [
"target/",
".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A GNU timeout-compatible command wrapper with interactive suspend/resume support"
homepage = "https://github.com/caotanduc/toomuch"
documentation = "https://docs.rs/toomuch"
readme = "README.md"
keywords = [
"cli",
"timeout",
"process",
"terminal",
"unix",
]
categories = [
"command-line-utilities",
"os::unix-apis",
]
license = "MIT"
repository = "https://github.com/caotanduc/toomuch"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "toomuch"
path = "src/lib.rs"
[[bin]]
name = "toomuch"
path = "src/bin/toomuch.rs"
[dependencies.libc]
version = "0.2"
[dependencies.nix]
version = "0.27"
features = [
"process",
"signal",
"term",
]
[dependencies.signal-hook]
version = "0.3"
[dependencies.terminal_size]
version = "0.3"
[dependencies.termios]
version = "0.3"