coreutils/src/cp/Cargo.toml

39 lines
650 B
TOML
Raw Normal View History

[package]
name = "cp"
version = "0.0.1"
authors = [
"Jordy Dickinson <jordy.dickinson@gmail.com>",
"Joshua S. Miller <jsmiller@uchicago.edu>",
]
build = "../../mkmain.rs"
[lib]
name = "uu_cp"
path = "cp.rs"
[dependencies]
getopts = "0.2.18"
libc = "0.2.42"
walkdir = "2.2.8"
clap = "2.32.0"
quick-error = "1.2.3"
filetime = "0.2"
[dependencies.uucore]
version = "0.0.1"
features = ["fs"]
2017-07-23 21:46:55 +00:00
[target.'cfg(target_os = "linux")'.dependencies]
ioctl-sys = "0.5.2"
[target.'cfg(target_os = "windows")'.dependencies]
2017-12-29 11:31:13 +00:00
kernel32-sys = "0.2.2"
2018-03-05 02:12:15 +00:00
winapi = "0.3"
2017-08-18 08:44:54 +00:00
[target.'cfg(unix)'.dependencies]
xattr="0.2.1"
[[bin]]
name = "cp"
path = "../../uumain.rs"