From 8e74a9da079ce7aef1013eeeb045181ea0dd0d7c Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Thu, 9 May 2024 18:31:07 -0700 Subject: [PATCH] chore: Fix type bound so that to_owned() is available --- src/write.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/write.rs b/src/write.rs index 05f77ed3..b6e3e9e4 100644 --- a/src/write.rs +++ b/src/write.rs @@ -13,6 +13,7 @@ use crate::types::{ffi, AesVendorVersion, DateTime, System, ZipFileData, DEFAULT use core::num::NonZeroU64; use crc32fast::Hasher; use indexmap::IndexMap; +use std::borrow::ToOwned; use std::default::Default; use std::io; use std::io::prelude::*; @@ -730,7 +731,7 @@ impl ZipWriter { raw_values: Option, ) -> ZipResult<()> where - S: Into>, + S: Into> + ToOwned, { self.finish_file()?;