From 76af976e485aa47ffc31d03c0095efbfb4a7047d Mon Sep 17 00:00:00 2001 From: Ben Wiederhake Date: Thu, 18 Jul 2024 15:19:34 +0200 Subject: [PATCH] uucore: add missing import No idea why this is only caught by clippy nightly. See also https://github.com/uutils/coreutils/pull/6483 --- src/uucore/src/lib/features/proc_info.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uucore/src/lib/features/proc_info.rs b/src/uucore/src/lib/features/proc_info.rs index 27d93658e..41e0144be 100644 --- a/src/uucore/src/lib/features/proc_info.rs +++ b/src/uucore/src/lib/features/proc_info.rs @@ -22,7 +22,7 @@ use std::{ collections::{HashMap, HashSet}, fmt::{self, Display, Formatter}, - fs, + fs, io, path::PathBuf, rc::Rc, };