mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2026-01-19 03:31:06 +00:00
24 lines
603 B
TOML
24 lines
603 B
TOML
[package]
|
|
name = "uu_chmod"
|
|
version = "0.0.26"
|
|
authors = ["uutils developers"]
|
|
license = "MIT"
|
|
description = "chmod ~ (uutils) change mode of FILE"
|
|
|
|
homepage = "https://github.com/uutils/coreutils"
|
|
repository = "https://github.com/uutils/coreutils/tree/main/src/uu/chmod"
|
|
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
|
|
categories = ["command-line-utilities"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
path = "src/chmod.rs"
|
|
|
|
[dependencies]
|
|
clap = { workspace = true }
|
|
libc = { workspace = true }
|
|
uucore = { workspace = true, features = ["fs", "mode"] }
|
|
|
|
[[bin]]
|
|
name = "chmod"
|
|
path = "src/main.rs"
|