style: Fix unused warnings by making the entire file cfg-dependent
This commit is contained in:
parent
2c61eb0cb7
commit
855d57610c
1 changed files with 1 additions and 2 deletions
|
@ -1,9 +1,9 @@
|
||||||
|
#![cfg(feature = "_deflate-any")]
|
||||||
//! Write a huge file with lots of zeros, that should compress perfectly.
|
//! Write a huge file with lots of zeros, that should compress perfectly.
|
||||||
|
|
||||||
use std::io::Write;
|
use std::io::Write;
|
||||||
|
|
||||||
use zip::write::SimpleFileOptions;
|
use zip::write::SimpleFileOptions;
|
||||||
#[cfg(feature = "_deflate-any")]
|
|
||||||
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||||
let args: Vec<_> = std::env::args().collect();
|
let args: Vec<_> = std::env::args().collect();
|
||||||
if args.len() < 2 {
|
if args.len() < 2 {
|
||||||
|
@ -15,7 +15,6 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "_deflate-any")]
|
|
||||||
fn doit(filename: &str) -> zip::result::ZipResult<()> {
|
fn doit(filename: &str) -> zip::result::ZipResult<()> {
|
||||||
let file = std::fs::File::create(filename)?;
|
let file = std::fs::File::create(filename)?;
|
||||||
let mut zip = zip::ZipWriter::new(file);
|
let mut zip = zip::ZipWriter::new(file);
|
||||||
|
|
Loading…
Add table
Reference in a new issue