From 938e616bea289327cfc7128d47cb5b7e58b1c06a Mon Sep 17 00:00:00 2001 From: firestar99 Date: Tue, 10 Feb 2026 15:56:01 +0100 Subject: [PATCH 1/2] ci: drop testing for `0.8.0` --- .github/workflows/push.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml index e48fea0..40e18db 100644 --- a/.github/workflows/push.yaml +++ b/.github/workflows/push.yaml @@ -52,8 +52,10 @@ jobs: # """ # It's probably easily fixable. But also `0.7.0` was released in April 2023, so there's # unlikely many users of it? - - rust-gpu-version: 0.8.0 - glam-version: 0.24.2 + + # 0.8.0 started failing as well due to `zmij v1.0.20` requiring rustc 1.71 or newer +# - rust-gpu-version: 0.8.0 +# glam-version: 0.24.2 - rust-gpu-version: 0.9.0 glam-version: 0.24.2 From a907f78c3d60e9c76f28807aabc4a4581c197621 Mon Sep 17 00:00:00 2001 From: firestar99 Date: Tue, 10 Feb 2026 15:10:45 +0100 Subject: [PATCH 2/2] fix clippy --- Cargo.toml | 1 + crates/xtask/src/main.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index c65bc29..8ea70da 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -67,3 +67,4 @@ pattern_type_mismatch = { level = "allow", priority = 1 } std_instead_of_alloc = { level = "allow", priority = 1 } arbitrary_source_item_ordering = { level = "allow", priority = 1 } missing_inline_in_public_items = { level = "allow", priority = 1 } +doc_paragraphs_missing_punctuation = { level = "allow", priority = 1 } diff --git a/crates/xtask/src/main.rs b/crates/xtask/src/main.rs index 076c57c..c596e93 100644 --- a/crates/xtask/src/main.rs +++ b/crates/xtask/src/main.rs @@ -36,6 +36,7 @@ enum Cli { }, } +/// run some cmd fn cmd(args: impl IntoIterator>) -> anyhow::Result<()> { let mut args = args.into_iter(); let mut cmd = std::process::Command::new(args.next().context("no args")?.as_ref());