Fix more lints
This commit is contained in:
parent
6b095601ee
commit
e51a0f02e7
1 changed files with 4 additions and 2 deletions
|
|
@ -4,8 +4,10 @@ use crate::{PngError, PngResult};
|
||||||
pub use deflater::crc32;
|
pub use deflater::crc32;
|
||||||
pub use deflater::deflate;
|
pub use deflater::deflate;
|
||||||
pub use deflater::inflate;
|
pub use deflater::inflate;
|
||||||
use std::io::{copy, BufWriter, Cursor, Write};
|
use std::{fmt, fmt::Display};
|
||||||
use std::{fmt, fmt::Display, io};
|
|
||||||
|
#[cfg(feature = "zopfli")]
|
||||||
|
use std::io::{self, copy, BufWriter, Cursor, Write};
|
||||||
|
|
||||||
#[cfg(feature = "zopfli")]
|
#[cfg(feature = "zopfli")]
|
||||||
use zopfli::{DeflateEncoder, Options};
|
use zopfli::{DeflateEncoder, Options};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue