From 46c022ea03c1a4bc7406c22b9b266f6ffe910f2e Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Fri, 10 May 2024 15:14:08 -0700 Subject: [PATCH] chore: More conditionally-unused imports --- src/read.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/read.rs b/src/read.rs index 7fbe8422..83e708f3 100644 --- a/src/read.rs +++ b/src/read.rs @@ -13,7 +13,7 @@ use crate::types::{AesMode, AesVendorVersion, DateTime, System, ZipFileData}; use crate::zipcrypto::{ZipCryptoReader, ZipCryptoReaderValid, ZipCryptoValidator}; use indexmap::IndexMap; use std::borrow::Cow; -use std::fs::{create_dir_all, Permissions}; +use std::fs::create_dir_all; use std::io::{self, copy, prelude::*, sink}; use std::ops::Deref; use std::path::{Path, PathBuf}; @@ -711,7 +711,7 @@ impl ZipArchive { { // Dirs must be writable until all normal files are extracted use std::os::unix::fs::PermissionsExt; - std::fs::set_permissions(outpath.as_ref(), Permissions::from_mode(0o755))?; + std::fs::set_permissions(outpath.as_ref(), std::fs::Permissions::from_mode(0o755))?; } Ok(()) }