From 2ad4c206811ebf78d21781fffd5dae020620ca69 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Thu, 11 May 2023 09:35:12 -0700 Subject: [PATCH] Reformat and fix Clippy warning --- src/read.rs | 4 +++- src/spec.rs | 4 +--- src/write.rs | 5 +++-- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/src/read.rs b/src/read.rs index f172a291..a4f74d85 100644 --- a/src/read.rs +++ b/src/read.rs @@ -352,7 +352,9 @@ impl ZipArchive { "Invalid central directory size or offset", ))?; if directory_start > search_upper_bound { - return Err(ZipError::InvalidArchive("Invalid central directory size or offset")); + return Err(ZipError::InvalidArchive( + "Invalid central directory size or offset", + )); } if footer64.disk_number != footer64.disk_with_central_directory { diff --git a/src/spec.rs b/src/spec.rs index 403b1eeb..2b133383 100644 --- a/src/spec.rs +++ b/src/spec.rs @@ -61,9 +61,7 @@ impl CentralDirectoryEnd { }) } - pub fn find_and_parse( - reader: &mut T, - ) -> ZipResult<(CentralDirectoryEnd, u64)> { + pub fn find_and_parse(reader: &mut T) -> ZipResult<(CentralDirectoryEnd, u64)> { const HEADER_SIZE: u64 = 22; const BYTES_BETWEEN_MAGIC_AND_COMMENT_SIZE: u64 = HEADER_SIZE - 6; let file_length = reader.seek(io::SeekFrom::End(0))?; diff --git a/src/write.rs b/src/write.rs index 679864ea..4d2b1eec 100644 --- a/src/write.rs +++ b/src/write.rs @@ -1481,7 +1481,6 @@ mod test { use crate::ZipArchive; use std::io; use std::io::{Read, Write}; - use zstd::zstd_safe::WriteBuf; #[test] fn write_empty_zip() { @@ -1777,7 +1776,9 @@ mod test { #[test] fn test_filename_looks_like_zip64_locator_3() { let mut writer = ZipWriter::new(io::Cursor::new(Vec::new())); - writer.start_file("\0PK\u{6}\u{6}", FileOptions::default()).unwrap(); + writer + .start_file("\0PK\u{6}\u{6}", FileOptions::default()) + .unwrap(); writer .start_file( "\0\u{4}\0\0PK\u{6}\u{7}\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\u{3}",