From e4d0a0228a53d31a9427d4c1d850445e416e64e1 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Fri, 19 Apr 2024 18:52:45 -0700 Subject: [PATCH] cargo fmt --all --- benches/read_entry.rs | 3 +-- examples/write_dir.rs | 6 ++---- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/benches/read_entry.rs b/benches/read_entry.rs index 554e68d6..eeabe74e 100644 --- a/benches/read_entry.rs +++ b/benches/read_entry.rs @@ -9,8 +9,7 @@ use zip::{write::SimpleFileOptions, ZipArchive, ZipWriter}; fn generate_random_archive(size: usize) -> Vec { let data = Vec::new(); let mut writer = ZipWriter::new(Cursor::new(data)); - let options = - SimpleFileOptions::default().compression_method(zip::CompressionMethod::Stored); + let options = SimpleFileOptions::default().compression_method(zip::CompressionMethod::Stored); writer.start_file("random.dat", options).unwrap(); let mut bytes = vec![0u8; size]; diff --git a/examples/write_dir.rs b/examples/write_dir.rs index 9833a00e..00aa75b1 100644 --- a/examples/write_dir.rs +++ b/examples/write_dir.rs @@ -10,8 +10,7 @@ fn main() { std::process::exit(real_main()); } -const METHOD_STORED: Option = - Some(zip::CompressionMethod::Stored); +const METHOD_STORED: Option = Some(zip::CompressionMethod::Stored); #[cfg(any( feature = "deflate", @@ -19,8 +18,7 @@ const METHOD_STORED: Option = feature = "deflate-zlib", feature = "deflate-zlib-ng" ))] -const METHOD_DEFLATED: Option = - Some(zip::CompressionMethod::Deflated); +const METHOD_DEFLATED: Option = Some(zip::CompressionMethod::Deflated); #[cfg(not(any( feature = "deflate", feature = "deflate-miniz",