From 4b68bce9a7718f260d38005498f5a85f43a5b9ea Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Tue, 31 Dec 2024 10:11:44 +0100 Subject: [PATCH] chmod: add uucore's "perms" feature to Cargo.toml --- src/uu/chmod/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uu/chmod/Cargo.toml b/src/uu/chmod/Cargo.toml index 9d6234879..acfeb6c04 100644 --- a/src/uu/chmod/Cargo.toml +++ b/src/uu/chmod/Cargo.toml @@ -19,7 +19,7 @@ path = "src/chmod.rs" [dependencies] clap = { workspace = true } libc = { workspace = true } -uucore = { workspace = true, features = ["fs", "mode"] } +uucore = { workspace = true, features = ["fs", "mode", "perms"] } [[bin]] name = "chmod"