coreutils/src/uu/nohup/Cargo.toml

26 lines
713 B
TOML
Raw Normal View History

[package]
name = "uu_nohup"
2021-04-03 08:28:12 +00:00
version = "0.0.5"
authors = ["uutils developers"]
license = "MIT"
description = "nohup ~ (uutils) run COMMAND, ignoring hangup signals"
homepage = "https://github.com/uutils/coreutils"
repository = "https://github.com/uutils/coreutils/tree/master/src/uu/nohup"
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
categories = ["command-line-utilities"]
edition = "2018"
[lib]
path = "src/nohup.rs"
[dependencies]
clap = "2.33"
libc = "0.2.42"
2021-04-03 08:28:12 +00:00
uucore = { version=">=0.0.8", package="uucore", path="../../uucore", features=["fs"] }
uucore_procs = { version=">=0.0.5", package="uucore_procs", path="../../uucore_procs" }
[[bin]]
name = "nohup"
path = "src/main.rs"