Bug fix: conditionally unused import

This commit is contained in:
Chris Hennick 2024-04-11 13:18:22 -07:00
parent b7fe3f6e4f
commit 812498e788

View file

@ -129,7 +129,9 @@ pub(crate) mod zip_writer {
pub(super) flush_on_finish_file: bool, pub(super) flush_on_finish_file: bool,
} }
} }
use crate::result::ZipError::{InvalidArchive, UnsupportedArchive}; use crate::result::ZipError::{InvalidArchive};
#[cfg(feature = "lzma")]
use crate::result::ZipError::UnsupportedArchive;
use crate::write::GenericZipWriter::{Closed, Storer}; use crate::write::GenericZipWriter::{Closed, Storer};
use crate::zipcrypto::ZipCryptoKeys; use crate::zipcrypto::ZipCryptoKeys;
use crate::CompressionMethod::Stored; use crate::CompressionMethod::Stored;