From c1f3bd069cfe907ab29867fb1ea26116080f4299 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 25 Jul 2024 17:39:25 +0000 Subject: [PATCH 1/2] Update dependency rust to v1.80.0 --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 414aee31b..6dfb3e9e3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,7 +7,7 @@ on: env: # renovate: datasource=github-tags depName=rust lookupName=rust-lang/rust - RUST_VERSION: 1.79.0 + RUST_VERSION: 1.80.0 jobs: lint: From 2338f3f83042aebce35388d0e1490a5c31f9fb7c Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Fri, 26 Jul 2024 09:32:33 +0200 Subject: [PATCH 2/2] Fix clippy warning --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index b0ab098af..6823f1193 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -262,7 +262,7 @@ fn copy_dir(source: impl AsRef, dest: impl AsRef) -> Result<(), io:: if entry.file_type()?.is_dir() { copy_inner(&entry.path(), &new_dest)?; } else { - fs::copy(&entry.path(), &new_dest)?; + fs::copy(entry.path(), &new_dest)?; } } Ok(())