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" 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"]