From 178f57fad6d95b72c13e21983d289fa46a2410a3 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Sat, 18 Jan 2025 21:43:18 +0100 Subject: [PATCH 1/2] uucore: add missing declarations --- src/uucore/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uucore/Cargo.toml b/src/uucore/Cargo.toml index ee461e048..92eaf0853 100644 --- a/src/uucore/Cargo.toml +++ b/src/uucore/Cargo.toml @@ -86,7 +86,7 @@ fsxattr = ["xattr"] lines = [] format = ["itertools", "quoting-style"] mode = ["libc"] -perms = ["libc", "walkdir"] +perms = ["entries", "libc", "walkdir"] buf-copy = [] pipes = [] process = ["libc"] From 03fc5ca381d26b292134a1d5b13116dae1a16525 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Sat, 18 Jan 2025 21:45:55 +0100 Subject: [PATCH 2/2] chmod/uucore dep: add missing dependency --- 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 073abc76e..70e856e09 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", "perms"] } +uucore = { workspace = true, features = ["entries", "fs", "mode", "perms"] } [[bin]] name = "chmod"