coreutils/src/uu/chown/Cargo.toml

26 lines
803 B
TOML
Raw Normal View History

2016-06-22 13:36:50 +00:00
[package]
name = "uu_chown"
2016-06-22 13:36:50 +00:00
version = "0.0.1"
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", "core", "cli", "util", "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]
glob = "0.3.0"
uucore = { version="0.0.4", package="uucore", git="https://github.com/uutils/uucore.git", branch="canary", features=["entries", "fs"] }
uucore_procs = { version="0.0.4", package="uucore_procs", git="https://github.com/uutils/uucore.git", branch="canary" }
walkdir = "2.2"
2016-06-22 13:36:50 +00:00
[[bin]]
name = "chown"
path = "src/main.rs"