Skip to content

Commit

Permalink
Fix unused import errors
Browse files Browse the repository at this point in the history
We do validation using `--no-default-features` which triggers these

Signed-off-by: John Eckersberg <[email protected]>
  • Loading branch information
jeckersb committed Nov 19, 2024
1 parent 151e870 commit ba8505c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion lib/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,14 @@ use std::process::Command;
use std::time::Duration;

use anyhow::{Context, Result};
#[cfg(feature = "install")]
use camino::Utf8Path;
use cap_std_ext::cap_std::fs::Dir;
#[cfg(feature = "install")]
use cap_std_ext::dirext::CapStdExtDirExt;
use cap_std_ext::{cap_std::fs::Dir, prelude::CapStdExtCommandExt};
#[cfg(feature = "install")]
use cap_std_ext::prelude::CapStdExtCommandExt;
#[cfg(feature = "install")]
use fn_error_context::context;
use indicatif::HumanDuration;
use libsystemd::logging::journal_print;
Expand Down

0 comments on commit ba8505c

Please sign in to comment.