coreutils/src/uu/cp/Cargo.toml
2020-04-14 13:46:18 -05:00

36 lines
671 B
TOML

[package]
name = "cp"
version = "0.0.1"
authors = [
"Jordy Dickinson <jordy.dickinson@gmail.com>",
"Joshua S. Miller <jsmiller@uchicago.edu>",
]
license = "MIT"
build = "../#common/mkmain.rs"
[lib]
name = "uu_cp"
path = "src/cp.rs"
[dependencies]
clap = "2.32.0"
filetime = "0.2"
getopts = "0.2.18"
libc = "0.2.42"
quick-error = "1.2.3"
uucore = { version = "0.0.2", features = ["fs"] }
walkdir = "2.2.8"
[target.'cfg(target_os = "linux")'.dependencies]
ioctl-sys = "0.5.2"
[target.'cfg(target_os = "windows")'.dependencies]
kernel32-sys = "0.2.2"
winapi = "0.3"
[target.'cfg(unix)'.dependencies]
xattr="0.2.1"
[[bin]]
name = "cp"
path = "../#common/uumain.rs"