mirror of
https://github.com/uutils/coreutils
synced 2024-12-19 09:33:25 +00:00
27 lines
815 B
TOML
27 lines
815 B
TOML
[package]
|
|
name = "uu_chown"
|
|
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"
|
|
|
|
[lib]
|
|
path = "src/chown.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "2.33", features = ["wrap_help"] }
|
|
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" }
|
|
|
|
[[bin]]
|
|
name = "chown"
|
|
path = "src/main.rs"
|
|
|
|
[package.metadata.cargo-udeps.ignore]
|
|
normal = ["uucore_procs"]
|