chore: Guard AesInfo behind #[cfg(feature = "aes-crypto")]

Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
This commit is contained in:
Chris Hennick 2024-05-23 13:04:31 -07:00 committed by GitHub
parent 74c604f29c
commit 492a6b9d12
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -976,6 +976,7 @@ impl<R: Read + Seek> ZipArchive<R> {
/// Holds the AES information of a file in the zip archive
#[derive(Debug)]
#[cfg(feature = "aes-crypto")]
pub struct AesInfo {
/// The AES encryption mode
pub aes_mode: AesMode,