From 3c4664a1a958f9e2379cb57830b4d223843af3b3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 9 Jan 2025 15:44:57 +0000 Subject: [PATCH 1/2] Update dependency rust to v1.84.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 6dfb3e9e3..a25a5c5fe 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.80.0 + RUST_VERSION: 1.84.0 jobs: lint: From 5a2012ce65349ef2a749d8340969e0a8058f4e05 Mon Sep 17 00:00:00 2001 From: Remo Senekowitsch Date: Wed, 22 Jan 2025 21:47:12 +0100 Subject: [PATCH 2/2] Elide lifetime --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 38e0cfe05..ea1640b4a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -47,7 +47,7 @@ handlebars_helper!(hb_month_name_helper: |month_num: u64| match month_num { _ => "Error!", }); -impl<'a> Generator<'a> { +impl Generator<'_> { fn new( out_directory: impl AsRef, posts_directory: impl AsRef,