From 87946b1948a11e58a0e8ee3ce80c06348f63acaf Mon Sep 17 00:00:00 2001 From: Elias Rohrer Date: Wed, 9 Sep 2026 18:39:28 +0200 Subject: [PATCH] Pin encoding_rs for MSRV builds Keep the Rust 1.85 CI job resolving encoding_rs 0.8.35 because newer releases require Rust 1.88. Co-Authored-By: HAL 9000 --- .github/workflows/rust.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index ea3df44b28..119ee51734 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -46,6 +46,7 @@ jobs: if: matrix.msrv run: | cargo update -p idna_adapter --precise "1.2.0" --verbose # idna_adapter 1.2.1 uses ICU4X 2.2.0, requiring 1.86 and newer + cargo update -p encoding_rs --precise "0.8.35" --verbose # encoding_rs 0.8.40 and newer require 1.88 and newer - name: Set RUSTFLAGS to deny warnings if: "matrix.toolchain == 'stable'" run: echo "RUSTFLAGS=-D warnings" >> "$GITHUB_ENV"