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 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());