coreutils/src/cp/Cargo.toml

36 lines
615 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]
2017-07-15 19:03:43 +00:00
getopts = "0.2.14"
libc = "0.2.26"
walkdir = "1.0.7"
clap = "2.20.0"
quick-error = "1.1.0"
uucore = { path="../uucore" }
2017-08-15 09:42:50 +00:00
filetime = "0.1"
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]
kernel32-sys = "*"
winapi = "*"
2017-08-18 08:44:54 +00:00
[target.'cfg(unix)'.dependencies]
xattr="0.2.1"
[[bin]]
name = "cp"
path = "../../uumain.rs"