From 44425845e8ffa1fb74f755e731bae135a0806a4b Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Tue, 15 Sep 2026 00:14:35 +0200 Subject: [PATCH] CI for MSRV: downgrade some crates that have newer MSRV Signed-off-by: Simon Sapin --- .github/workflows/main.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5a590905..dc23c59a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -99,11 +99,16 @@ jobs: steps: - uses: actions/checkout@v7 - - name: Install stable toolchain + - name: Install MSRV toolchain run: | rustup set profile minimal rustup override set 1.85.0 + - name: Downgrade some crates that have newer MSRV + # encoding_rs 0.8.40 requires Rust 1.88 + run: | + cargo update encoding_rs --precise 0.8.35 + - run: cargo check --lib --all-features lint: