Fix more formatting issues (sort imports)
This commit is contained in:
parent
06b5ceaef9
commit
98d37c8b77
2 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue