coreutils/src/uu/chown/Cargo.toml

27 lines
740 B
TOML
Raw Normal View History

2016-06-22 13:36:50 +00:00
[package]
name = "uu_chown"
version = "0.0.6"
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 = "2.33"
glob = "0.3.0"
2021-04-03 08:28:12 +00:00
uucore = { version=">=0.0.8", package="uucore", path="../../uucore", features=["entries", "fs", "perms"] }
uucore_procs = { version=">=0.0.5", package="uucore_procs", path="../../uucore_procs" }
walkdir = "2.2"
2016-06-22 13:36:50 +00:00
[[bin]]
name = "chown"
path = "src/main.rs"