cargo fmt --all
This commit is contained in:
parent
174825229c
commit
e4d0a0228a
2 changed files with 3 additions and 6 deletions
|
@ -9,8 +9,7 @@ use zip::{write::SimpleFileOptions, ZipArchive, ZipWriter};
|
||||||
fn generate_random_archive(size: usize) -> Vec<u8> {
|
fn generate_random_archive(size: usize) -> Vec<u8> {
|
||||||
let data = Vec::new();
|
let data = Vec::new();
|
||||||
let mut writer = ZipWriter::new(Cursor::new(data));
|
let mut writer = ZipWriter::new(Cursor::new(data));
|
||||||
let options =
|
let options = SimpleFileOptions::default().compression_method(zip::CompressionMethod::Stored);
|
||||||
SimpleFileOptions::default().compression_method(zip::CompressionMethod::Stored);
|
|
||||||
|
|
||||||
writer.start_file("random.dat", options).unwrap();
|
writer.start_file("random.dat", options).unwrap();
|
||||||
let mut bytes = vec![0u8; size];
|
let mut bytes = vec![0u8; size];
|
||||||
|
|
|
@ -10,8 +10,7 @@ fn main() {
|
||||||
std::process::exit(real_main());
|
std::process::exit(real_main());
|
||||||
}
|
}
|
||||||
|
|
||||||
const METHOD_STORED: Option<zip::CompressionMethod> =
|
const METHOD_STORED: Option<zip::CompressionMethod> = Some(zip::CompressionMethod::Stored);
|
||||||
Some(zip::CompressionMethod::Stored);
|
|
||||||
|
|
||||||
#[cfg(any(
|
#[cfg(any(
|
||||||
feature = "deflate",
|
feature = "deflate",
|
||||||
|
@ -19,8 +18,7 @@ const METHOD_STORED: Option<zip::CompressionMethod> =
|
||||||
feature = "deflate-zlib",
|
feature = "deflate-zlib",
|
||||||
feature = "deflate-zlib-ng"
|
feature = "deflate-zlib-ng"
|
||||||
))]
|
))]
|
||||||
const METHOD_DEFLATED: Option<zip::CompressionMethod> =
|
const METHOD_DEFLATED: Option<zip::CompressionMethod> = Some(zip::CompressionMethod::Deflated);
|
||||||
Some(zip::CompressionMethod::Deflated);
|
|
||||||
#[cfg(not(any(
|
#[cfg(not(any(
|
||||||
feature = "deflate",
|
feature = "deflate",
|
||||||
feature = "deflate-miniz",
|
feature = "deflate-miniz",
|
||||||
|
|
Loading…
Add table
Reference in a new issue