From 14dd223fc7a4e6191d42c7f22bdc1c319faa2ce7 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Tue, 21 May 2024 09:49:45 +0200 Subject: [PATCH] Cargo.toml: enable uucore's mode feature --- Cargo.toml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ab1374507..2bbd43c52 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -490,7 +490,12 @@ sha1 = { version = "0.10.6", features = ["std"] } tempfile = { workspace = true } time = { workspace = true, features = ["local-offset"] } unindent = "0.2.3" -uucore = { workspace = true, features = ["entries", "process", "signals"] } +uucore = { workspace = true, features = [ + "entries", + "mode", + "process", + "signals", +] } walkdir = { workspace = true } hex-literal = "0.4.1" rstest = { workspace = true }