Skip to content

Commit

Permalink
Merge pull request containers#908 from jeckersb/unused-imports
Browse files Browse the repository at this point in the history
Fix unused import errors
  • Loading branch information
cgwalters authored Nov 19, 2024
2 parents 151e870 + ba8505c commit 3604dbb
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 3604dbb

Please sign in to comment.