mirror of
https://github.com/uutils/coreutils
synced 2024-12-18 00:53:25 +00:00
34d2d1d05e
Bumps [libc](https://github.com/rust-lang/libc) from 0.2.113 to 0.2.121. - [Release notes](https://github.com/rust-lang/libc/releases) - [Commits](https://github.com/rust-lang/libc/compare/0.2.113...0.2.121) --- updated-dependencies: - dependency-name: libc dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
25 lines
717 B
TOML
25 lines
717 B
TOML
[package]
|
|
name = "uu_timeout"
|
|
version = "0.0.12"
|
|
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/main/src/uu/timeout"
|
|
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
|
|
categories = ["command-line-utilities"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
path = "src/timeout.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "3.1", features = ["wrap_help", "cargo"] }
|
|
libc = "0.2.121"
|
|
nix = "0.23.1"
|
|
uucore = { version=">=0.0.11", package="uucore", path="../../uucore", features=["process", "signals"] }
|
|
|
|
[[bin]]
|
|
name = "timeout"
|
|
path = "src/main.rs"
|