From 2ff7523c41dcb8e0ccbd5402cf525f9ee862f050 Mon Sep 17 00:00:00 2001 From: Lars Francke Date: Mon, 24 Aug 2026 14:07:32 +0200 Subject: [PATCH 1/2] chore: bump the rustfmt nightly to nightly-2026-08-23 --- .github/workflows/pr_prek.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr_prek.yaml b/.github/workflows/pr_prek.yaml index 3a54e0051..478caea0f 100644 --- a/.github/workflows/pr_prek.yaml +++ b/.github/workflows/pr_prek.yaml @@ -7,7 +7,7 @@ on: env: CARGO_TERM_COLOR: always - RUST_TOOLCHAIN_VERSION: "nightly-2026-07-01" + RUST_TOOLCHAIN_VERSION: "nightly-2026-08-23" permissions: {} From 1f2d66563c1633401ab9d62028e62f0377b373c1 Mon Sep 17 00:00:00 2001 From: Lars Francke Date: Mon, 24 Aug 2026 16:23:58 +0200 Subject: [PATCH 2/2] chore: bump the rustfmt nightly in the pre-commit hooks The hooks name the toolchain in their own entry line, which the workflow environment does not reach, so both carry the version and both have to move. --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 77409fc6a..b9048228f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -67,7 +67,7 @@ repos: name: cargo-rustfmt language: system # Pinning to a specific rustc version, so that we get consistent formatting - entry: cargo +nightly-2026-07-01 fmt --all -- --check + entry: cargo +nightly-2026-08-23 fmt --all -- --check stages: [pre-commit, pre-merge-commit] pass_filenames: false files: \.rs$