fix: only compile new example if a Deflate encoder is enabled

This commit is contained in:
Chris Hennick 2024-05-01 15:19:52 -07:00
parent 04390ca276
commit e670e98073
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -3,6 +3,7 @@
use std::io::Write;
use zip::write::SimpleFileOptions;
#[cfg(feature = "_deflate-any")]
fn main() -> Result<(), Box<dyn std::error::Error>> {
let args: Vec<_> = std::env::args().collect();
if args.len() < 2 {