From b7c49abc4d5dba5c320ae12146cf04f8bafefe76 Mon Sep 17 00:00:00 2001 From: Shaun Arman Date: Sun, 15 Mar 2026 12:58:28 -0500 Subject: [PATCH] ci: bump Rust to 1.88-slim (min required by cookie_store, time, darling) --- .woodpecker/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml index 559b3963..0c48d739 100644 --- a/.woodpecker/test.yml +++ b/.woodpecker/test.yml @@ -8,20 +8,20 @@ clone: pipeline: rust-fmt-check: - image: rust:1.85-slim + image: rust:1.88-slim commands: - rustup component add rustfmt - cargo fmt --manifest-path src-tauri/Cargo.toml --check rust-clippy: - image: rust:1.85-slim + image: rust:1.88-slim commands: - apt-get update -qq && apt-get install -y -qq libwebkit2gtk-4.1-dev libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev patchelf pkg-config - rustup component add clippy - cargo clippy --manifest-path src-tauri/Cargo.toml -- -D warnings rust-tests: - image: rust:1.85-slim + image: rust:1.88-slim commands: - apt-get update -qq && apt-get install -y -qq libwebkit2gtk-4.1-dev libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev patchelf pkg-config - cargo test --manifest-path src-tauri/Cargo.toml