2015-07-31 22:49:14 +00:00
|
|
|
[package]
|
2020-05-04 06:25:36 +00:00
|
|
|
name = "uu_cp"
|
2022-04-02 08:58:07 +00:00
|
|
|
version = "0.0.13"
|
2016-12-28 01:08:43 +00:00
|
|
|
authors = [
|
2020-05-04 06:25:36 +00:00
|
|
|
"Jordy Dickinson <jordy.dickinson@gmail.com>",
|
|
|
|
"Joshua S. Miller <jsmiller@uchicago.edu>",
|
2020-05-24 17:15:34 +00:00
|
|
|
"uutils developers",
|
2016-12-28 01:08:43 +00:00
|
|
|
]
|
2020-04-08 14:20:53 +00:00
|
|
|
license = "MIT"
|
2020-05-24 17:15:34 +00:00
|
|
|
description = "cp ~ (uutils) copy SOURCE to DESTINATION"
|
|
|
|
|
|
|
|
homepage = "https://github.com/uutils/coreutils"
|
2022-03-06 21:10:31 +00:00
|
|
|
repository = "https://github.com/uutils/coreutils/tree/main/src/uu/cp"
|
2020-05-31 04:02:42 +00:00
|
|
|
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
|
2020-05-25 04:43:59 +00:00
|
|
|
categories = ["command-line-utilities"]
|
|
|
|
edition = "2018"
|
2015-07-31 22:49:14 +00:00
|
|
|
|
|
|
|
[lib]
|
2020-04-14 16:59:25 +00:00
|
|
|
path = "src/cp.rs"
|
2015-07-31 22:49:14 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-03-17 13:06:29 +00:00
|
|
|
clap = { version = "3.1", features = ["wrap_help", "cargo"] }
|
2020-04-08 07:15:54 +00:00
|
|
|
filetime = "0.2"
|
2022-03-20 18:14:52 +00:00
|
|
|
libc = "0.2.121"
|
2022-01-31 20:56:47 +00:00
|
|
|
quick-error = "2.0.1"
|
2022-01-29 00:31:17 +00:00
|
|
|
selinux = { version="0.2", optional=true }
|
2022-01-16 16:05:38 +00:00
|
|
|
uucore = { version=">=0.0.11", package="uucore", path="../../uucore", features=["entries", "fs", "perms", "mode"] }
|
2020-12-12 12:10:38 +00:00
|
|
|
walkdir = "2.2"
|
2018-03-13 03:21:38 +00:00
|
|
|
|
2017-07-23 21:46:55 +00:00
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
2022-03-20 16:46:37 +00:00
|
|
|
ioctl-sys = "0.8"
|
2017-07-23 21:46:55 +00:00
|
|
|
|
2017-08-20 14:55:36 +00:00
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
2020-05-26 18:26:07 +00:00
|
|
|
winapi = { version="0.3", features=["fileapi"] }
|
2017-08-20 14:55:36 +00:00
|
|
|
|
2017-08-18 08:44:54 +00:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
xattr="0.2.1"
|
2022-04-02 12:12:52 +00:00
|
|
|
exacl= { version = "0.8.0", optional=true }
|
2017-08-18 08:44:54 +00:00
|
|
|
|
2015-11-22 20:45:04 +00:00
|
|
|
[[bin]]
|
2015-12-08 02:42:08 +00:00
|
|
|
name = "cp"
|
2020-05-04 06:25:36 +00:00
|
|
|
path = "src/main.rs"
|
2021-08-29 23:27:47 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
feat_selinux = ["selinux"]
|
|
|
|
feat_acl = ["exacl"]
|