mirror of
https://github.com/uutils/coreutils.git
synced 2026-05-06 07:26:38 -04:00
43 lines
956 B
TOML
43 lines
956 B
TOML
[package]
|
|
name = "uu_install"
|
|
description = "install ~ (uutils) copy files from SOURCE to DESTINATION (with specified attributes)"
|
|
repository = "https://github.com/uutils/coreutils/tree/main/src/uu/install"
|
|
version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
readme.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/install.rs"
|
|
|
|
[dependencies]
|
|
clap = { workspace = true }
|
|
filetime = { workspace = true }
|
|
file_diff = { workspace = true }
|
|
selinux = { workspace = true, optional = true }
|
|
thiserror = { workspace = true }
|
|
uucore = { workspace = true, default-features = true, features = [
|
|
"backup-control",
|
|
"buf-copy",
|
|
"fs",
|
|
"mode",
|
|
"perms",
|
|
"entries",
|
|
"process",
|
|
] }
|
|
fluent = { workspace = true }
|
|
|
|
[features]
|
|
selinux = ["dep:selinux", "uucore/selinux"]
|
|
|
|
[[bin]]
|
|
name = "install"
|
|
path = "src/main.rs"
|