mirror of
https://github.com/uutils/coreutils
synced 2025-01-09 11:49:06 +00:00
59440d35c0
Bumps [clap](https://github.com/clap-rs/clap) from 3.0.10 to 3.1.6. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v3.0.10...v3.1.6) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
46 lines
1.2 KiB
TOML
46 lines
1.2 KiB
TOML
[package]
|
|
name = "uu_cp"
|
|
version = "0.0.12"
|
|
authors = [
|
|
"Jordy Dickinson <jordy.dickinson@gmail.com>",
|
|
"Joshua S. Miller <jsmiller@uchicago.edu>",
|
|
"uutils developers",
|
|
]
|
|
license = "MIT"
|
|
description = "cp ~ (uutils) copy SOURCE to DESTINATION"
|
|
|
|
homepage = "https://github.com/uutils/coreutils"
|
|
repository = "https://github.com/uutils/coreutils/tree/main/src/uu/cp"
|
|
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
|
|
categories = ["command-line-utilities"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
path = "src/cp.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "3.1", features = ["wrap_help", "cargo"] }
|
|
filetime = "0.2"
|
|
libc = "0.2.85"
|
|
quick-error = "2.0.1"
|
|
selinux = { version="0.2", optional=true }
|
|
uucore = { version=">=0.0.11", package="uucore", path="../../uucore", features=["entries", "fs", "perms", "mode"] }
|
|
walkdir = "2.2"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
ioctl-sys = "0.6"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
winapi = { version="0.3", features=["fileapi"] }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
xattr="0.2.1"
|
|
exacl= { version = "0.6.0", optional=true }
|
|
|
|
[[bin]]
|
|
name = "cp"
|
|
path = "src/main.rs"
|
|
|
|
[features]
|
|
feat_selinux = ["selinux"]
|
|
feat_acl = ["exacl"]
|