mirror of
https://github.com/uutils/coreutils
synced 2025-01-09 11:49:06 +00:00
39d9fa31f6
Bumps [selinux](https://github.com/koutheir/selinux) from 0.2.7 to 0.3.0. - [Release notes](https://github.com/koutheir/selinux/releases) - [Changelog](https://github.com/koutheir/selinux/blob/master/CHANGELOG.md) - [Commits](https://github.com/koutheir/selinux/commits) --- updated-dependencies: - dependency-name: selinux dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
43 lines
1.1 KiB
TOML
43 lines
1.1 KiB
TOML
[package]
|
|
name = "uu_cp"
|
|
version = "0.0.15"
|
|
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 = "2021"
|
|
|
|
[lib]
|
|
path = "src/cp.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "3.2", features = ["wrap_help", "cargo"] }
|
|
filetime = "0.2"
|
|
libc = "0.2.132"
|
|
quick-error = "2.0.1"
|
|
selinux = { version="0.3", optional=true }
|
|
uucore = { version=">=0.0.15", package="uucore", path="../../uucore", features=["entries", "fs", "perms", "mode"] }
|
|
walkdir = "2.2"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
winapi = { version="0.3", features=["fileapi"] }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
xattr="0.2.3"
|
|
exacl= { version = "0.9.0", optional=true }
|
|
|
|
[[bin]]
|
|
name = "cp"
|
|
path = "src/main.rs"
|
|
|
|
[features]
|
|
feat_selinux = ["selinux"]
|
|
feat_acl = ["exacl"]
|