mirror of
https://github.com/uutils/coreutils
synced 2024-12-23 19:43:15 +00:00
cccf89a48c
Changed from optparse to clap. None of the logic within timeout has been changed, which could use some refactoring, but that's beyond the scope of this commit.
27 lines
775 B
TOML
27 lines
775 B
TOML
[package]
|
|
name = "uu_timeout"
|
|
version = "0.0.6"
|
|
authors = ["uutils developers"]
|
|
license = "MIT"
|
|
description = "timeout ~ (uutils) run COMMAND with a DURATION time limit"
|
|
|
|
homepage = "https://github.com/uutils/coreutils"
|
|
repository = "https://github.com/uutils/coreutils/tree/master/src/uu/timeout"
|
|
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
|
|
categories = ["command-line-utilities"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
path = "src/timeout.rs"
|
|
|
|
[dependencies]
|
|
clap = "2.33"
|
|
getopts = "0.2.18"
|
|
libc = "0.2.42"
|
|
uucore = { version=">=0.0.8", package="uucore", path="../../uucore", features=["parse_time", "process", "signals"] }
|
|
uucore_procs = { version=">=0.0.5", package="uucore_procs", path="../../uucore_procs" }
|
|
|
|
|
|
[[bin]]
|
|
name = "timeout"
|
|
path = "src/main.rs"
|