Bug fix: conditionally unused import
This commit is contained in:
parent
b7fe3f6e4f
commit
812498e788
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue