diff --git a/examples/write-large-file.rs b/examples/write-large-file.rs index 2b8ee943..f7ae183e 100644 --- a/examples/write-large-file.rs +++ b/examples/write-large-file.rs @@ -15,6 +15,7 @@ fn main() -> Result<(), Box> { Ok(()) } +#[cfg(feature = "_deflate-any")] fn doit(filename: &str) -> zip::result::ZipResult<()> { let file = std::fs::File::create(filename)?; let mut zip = zip::ZipWriter::new(file);