mirror of
https://github.com/uutils/coreutils
synced 2024-12-20 10:03:33 +00:00
36 lines
667 B
TOML
36 lines
667 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 = "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.1", 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"
|