Cargo fmt and cargo clippy fixes.

This commit is contained in:
Avi Weinstock 2022-03-25 12:32:41 -04:00
parent 993cbcdc5c
commit 45a98c01b9
2 changed files with 50 additions and 47 deletions

View file

@ -662,14 +662,17 @@ pub(crate) fn central_header_to_zip_file<R: Read + io::Seek>(
CompressionMethod::from_u16(central_header.compression_method)
},
compression_level: None,
last_modified_time: DateTime::from_msdos(central_header.last_mod_date, central_header.last_mod_time),
last_modified_time: DateTime::from_msdos(
central_header.last_mod_date,
central_header.last_mod_time,
),
crc32: central_header.crc32,
compressed_size: central_header.compressed_size as u64,
uncompressed_size: central_header.uncompressed_size as u64,
file_name: file_name,
file_name,
file_name_raw: central_header.file_name_raw,
extra_field: central_header.extra_field,
file_comment: file_comment,
file_comment,
header_start: central_header.offset as u64,
central_header_start,
data_start: AtomicU64::new(0),