From bcc5a91988edd18e54539fcaa56ad633e5f6fe20 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Wed, 28 Feb 2024 15:29:29 -0800 Subject: [PATCH] Fix clippy error --- src/write.rs | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/src/write.rs b/src/write.rs index 7ae82c85..ce15dd3b 100644 --- a/src/write.rs +++ b/src/write.rs @@ -1274,11 +1274,9 @@ impl GenericZipWriter { unreachable!() } #[cfg(feature = "deflate64")] - CompressionMethod::Deflate64 => { - Err(ZipError::UnsupportedArchive( - "Compressing Deflate64 is not supported", - )) - } + CompressionMethod::Deflate64 => Err(ZipError::UnsupportedArchive( + "Compressing Deflate64 is not supported", + )), #[cfg(feature = "bzip2")] CompressionMethod::Bzip2 => { let level = clamp_opt( @@ -1634,6 +1632,15 @@ fn path_to_string(path: &std::path::Path) -> String { path_str } +#[cfg(not(feature = "unreserved"))] +const EXTRA_FIELD_MAPPING: [u16; 49] = [ + 0x0001, 0x0007, 0x0008, 0x0009, 0x000a, 0x000c, 0x000d, 0x000e, 0x000f, 0x0014, 0x0015, 0x0016, + 0x0017, 0x0018, 0x0019, 0x0020, 0x0021, 0x0022, 0x0023, 0x0065, 0x0066, 0x4690, 0x07c8, 0x2605, + 0x2705, 0x2805, 0x334d, 0x4341, 0x4453, 0x4704, 0x470f, 0x4b46, 0x4c41, 0x4d49, 0x4f4c, 0x5356, + 0x5455, 0x554e, 0x5855, 0x6375, 0x6542, 0x7075, 0x756e, 0x7855, 0xa11e, 0xa220, 0xfd4a, 0x9901, + 0x9902, +]; + #[cfg(test)] mod test { use super::{FileOptions, ZipWriter}; @@ -2080,12 +2087,3 @@ mod test { Ok(()) } } - -#[cfg(not(feature = "unreserved"))] -const EXTRA_FIELD_MAPPING: [u16; 49] = [ - 0x0001, 0x0007, 0x0008, 0x0009, 0x000a, 0x000c, 0x000d, 0x000e, 0x000f, 0x0014, 0x0015, 0x0016, - 0x0017, 0x0018, 0x0019, 0x0020, 0x0021, 0x0022, 0x0023, 0x0065, 0x0066, 0x4690, 0x07c8, 0x2605, - 0x2705, 0x2805, 0x334d, 0x4341, 0x4453, 0x4704, 0x470f, 0x4b46, 0x4c41, 0x4d49, 0x4f4c, 0x5356, - 0x5455, 0x554e, 0x5855, 0x6375, 0x6542, 0x7075, 0x756e, 0x7855, 0xa11e, 0xa220, 0xfd4a, 0x9901, - 0x9902, -];