From 16dc2482f2906a93d7bd73fb8cdda710e8b28118 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Sun, 5 May 2024 17:57:15 -0700 Subject: [PATCH] chore: Fix unused import warning for TryInto with no features --- src/write.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/write.rs b/src/write.rs index 437cd1ad..fcb0b890 100644 --- a/src/write.rs +++ b/src/write.rs @@ -9,7 +9,6 @@ use crate::types::{ffi, DateTime, System, ZipFileData, DEFAULT_VERSION}; use core::num::NonZeroU64; use crc32fast::Hasher; use indexmap::IndexMap; -use std::convert::TryInto; use std::default::Default; use std::io; use std::io::prelude::*; @@ -221,6 +220,7 @@ impl arbitrary::Arbitrary<'_> for FileOptions { match options.compression_method { #[cfg(feature = "deflate-zopfli")] CompressionMethod::Deflated => { + use core::convert::TryInto; if bool::arbitrary(u)? { let level = u.int_in_range(0..=24)?; options.compression_level = Some(level); @@ -400,6 +400,8 @@ impl FileOptions { impl Default for FileOptions { /// Construct a new FileOptions object fn default() -> Self { + #[cfg(feature = "time")] + use core::convert::TryInto; Self { compression_method: Default::default(), compression_level: None, @@ -1602,6 +1604,7 @@ fn clamp_opt>( value: T, range: std::ops::RangeInclusive, ) -> Option { + use core::convert::TryInto; if range.contains(&value.try_into().ok()?) { Some(value) } else {