From 0ec043d6be4276183fed8af5c721a3b1e5a3087e Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Tue, 14 May 2024 13:11:57 -0700 Subject: [PATCH] style: Remove an unused import on Windows --- src/read.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/read.rs b/src/read.rs index f736c066..16bb3787 100644 --- a/src/read.rs +++ b/src/read.rs @@ -698,7 +698,6 @@ impl ZipArchive { } #[cfg(windows)] { - use std::os::windows::ffi::OsStrExt; let target_path: PathBuf = directory.as_ref().join(OsStr::from_vec(target)); if target_path.is_dir() { std::os::windows::fs::symlink_dir(target_path, outpath.as_path())?;