coreutils/src/uu/chown/Cargo.toml

25 lines
750 B
TOML
Raw Normal View History

2016-06-22 13:36:50 +00:00
[package]
name = "uu_chown"
2021-10-23 17:21:37 +00:00
version = "0.0.8"
authors = ["uutils developers"]
license = "MIT"
description = "chown ~ (uutils) change the ownership of FILE"
homepage = "https://github.com/uutils/coreutils"
repository = "https://github.com/uutils/coreutils/tree/master/src/uu/chown"
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
categories = ["command-line-utilities"]
edition = "2018"
2016-06-22 13:36:50 +00:00
[lib]
path = "src/chown.rs"
2016-06-22 13:36:50 +00:00
[dependencies]
clap = { version = "2.33", features = ["wrap_help"] }
2021-10-23 17:21:37 +00:00
uucore = { version=">=0.0.10", package="uucore", path="../../uucore", features=["entries", "fs", "perms"] }
uucore_procs = { version=">=0.0.7", package="uucore_procs", path="../../uucore_procs" }
2016-06-22 13:36:50 +00:00
[[bin]]
name = "chown"
path = "src/main.rs"