From 68bfb4e90c15f5a0555e70d56c8e4d68315e18c3 Mon Sep 17 00:00:00 2001 From: goose Date: Tue, 17 Mar 2026 23:07:06 -0300 Subject: [PATCH] fix(ci): upgrade Rust from 1.83 to 1.84 for edition2024 support - Update Rust image from 1.83-slim to 1.84-slim - Fixes 'feature edition2024 is required' error - time-core crate requires edition2024 feature - Rust 1.84 supports edition2024 feature - Maintains compatibility with existing dependencies --- .forgejo/workflows/lint-and-build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/lint-and-build.yml b/.forgejo/workflows/lint-and-build.yml index 66aa4e8..d4f66b1 100644 --- a/.forgejo/workflows/lint-and-build.yml +++ b/.forgejo/workflows/lint-and-build.yml @@ -13,7 +13,7 @@ jobs: format: runs-on: docker container: - image: rust:1.83-slim + image: rust:1.84-slim steps: - name: Install Node.js for checkout @@ -42,7 +42,7 @@ jobs: clippy: runs-on: docker container: - image: rust:1.83-slim + image: rust:1.84-slim steps: - name: Install Node.js for checkout @@ -71,7 +71,7 @@ jobs: build: runs-on: docker container: - image: rust:1.83-slim + image: rust:1.84-slim needs: [format, clippy] steps: