From 492a6b9d12b8e89542bfcea2c0a900f847fa1433 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Thu, 23 May 2024 13:04:31 -0700 Subject: [PATCH] chore: Guard AesInfo behind #[cfg(feature = "aes-crypto")] Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> --- src/read.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/read.rs b/src/read.rs index 7db40f93..01b043a1 100644 --- a/src/read.rs +++ b/src/read.rs @@ -976,6 +976,7 @@ impl ZipArchive { /// 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,