From b944c3ad8600b978871e53764fcabe20e1ec7e65 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Wed, 1 May 2024 09:55:07 -0700 Subject: [PATCH] Fix failing build Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> --- examples/append.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/append.rs b/examples/append.rs index 560136d3..8bb1e4d8 100644 --- a/examples/append.rs +++ b/examples/append.rs @@ -1,6 +1,5 @@ use std::{ fs::{File, OpenOptions}, - io::{Read, Write}, path::{Path, PathBuf}, str::FromStr, }; @@ -47,7 +46,7 @@ fn real_main() -> i32 { for file in files { append_zip - .start_file(file.to_string_lossy(), Default::default()) + .start_file_from_path(file, Default::default()) .unwrap(); let mut f = File::open(file).unwrap();