diff --git a/benches/read_metadata.rs b/benches/read_metadata.rs index f7664772..b4d6bb36 100644 --- a/benches/read_metadata.rs +++ b/benches/read_metadata.rs @@ -3,8 +3,8 @@ use bencher::{benchmark_group, benchmark_main}; use std::io::{Cursor, Write}; use bencher::Bencher; -use zip_next::{CompressionMethod, ZipArchive, ZipWriter}; use zip_next::write::FileOptions; +use zip_next::{CompressionMethod, ZipArchive, ZipWriter}; const FILE_COUNT: usize = 15_000; const FILE_SIZE: usize = 1024; diff --git a/tests/end_to_end.rs b/tests/end_to_end.rs index 4f4b8744..fd31570b 100644 --- a/tests/end_to_end.rs +++ b/tests/end_to_end.rs @@ -3,9 +3,9 @@ use std::collections::HashSet; use std::io::prelude::*; use std::io::{Cursor, Seek}; use std::iter::FromIterator; -use zip_next::write::FileOptions; -use zip_next::{CompressionMethod, SUPPORTED_COMPRESSION_METHODS, ZipWriter}; use zip_next::result::ZipResult; +use zip_next::write::FileOptions; +use zip_next::{CompressionMethod, ZipWriter, SUPPORTED_COMPRESSION_METHODS}; // This test asserts that after creating a zip file, then reading its contents back out, // the extracted data will *always* be exactly the same as the original data.