From da21bbe45feaf8a07710c6d26153a2f94470bf76 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Wed, 28 Feb 2024 16:01:31 -0800 Subject: [PATCH] Remove redundant imports --- examples/write_dir.rs | 2 -- src/crc32.rs | 1 - src/read/stream.rs | 1 - src/write.rs | 12 ------------ tests/end_to_end.rs | 3 +-- 5 files changed, 1 insertion(+), 18 deletions(-) diff --git a/examples/write_dir.rs b/examples/write_dir.rs index 6d92d161..d71808dc 100644 --- a/examples/write_dir.rs +++ b/examples/write_dir.rs @@ -1,6 +1,4 @@ use std::io::prelude::*; -use std::io::{Seek, Write}; -use std::iter::Iterator; use zip_next::result::ZipError; use zip_next::write::FileOptions; diff --git a/src/crc32.rs b/src/crc32.rs index ebace898..7152c085 100644 --- a/src/crc32.rs +++ b/src/crc32.rs @@ -55,7 +55,6 @@ impl Read for Crc32Reader { #[cfg(test)] mod test { use super::*; - use std::io::Read; #[test] fn test_empty_reader() { diff --git a/src/read/stream.rs b/src/read/stream.rs index 97e7019a..36f55172 100644 --- a/src/read/stream.rs +++ b/src/read/stream.rs @@ -213,7 +213,6 @@ impl ZipStreamFileMetadata { mod test { use super::*; use std::collections::BTreeSet; - use std::io; struct DummyVisitor; impl ZipStreamVisitor for DummyVisitor { diff --git a/src/write.rs b/src/write.rs index ce15dd3b..54c99fdd 100644 --- a/src/write.rs +++ b/src/write.rs @@ -8,17 +8,6 @@ use crate::types::{ffi, AtomicU64, DateTime, System, ZipFileData, DEFAULT_VERSIO use byteorder::{LittleEndian, WriteBytesExt}; use crc32fast::Hasher; use std::collections::HashMap; -#[cfg(any( - feature = "deflate", - feature = "deflate-miniz", - feature = "deflate-zlib", - feature = "deflate-zlib-ng", - feature = "deflate-zopfli", - feature = "bzip2", - feature = "zstd", - feature = "time" -))] -use std::convert::TryInto; use std::default::Default; use std::io; use std::io::prelude::*; @@ -101,7 +90,6 @@ enum GenericZipWriter { // Put the struct declaration in a private module to convince rustdoc to display ZipWriter nicely pub(crate) mod zip_writer { use super::*; - use std::collections::HashMap; /// ZIP archive generator /// /// Handles the bookkeeping involved in building an archive, and provides an diff --git a/tests/end_to_end.rs b/tests/end_to_end.rs index 039bd6b0..255c06bc 100644 --- a/tests/end_to_end.rs +++ b/tests/end_to_end.rs @@ -1,8 +1,7 @@ use byteorder::{LittleEndian, WriteBytesExt}; use std::collections::HashSet; use std::io::prelude::*; -use std::io::{Cursor, Seek}; -use std::iter::FromIterator; +use std::io::{Cursor}; use zip_next::result::ZipResult; use zip_next::write::FileOptions; use zip_next::{CompressionMethod, ZipWriter, SUPPORTED_COMPRESSION_METHODS};