Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
1 change: 1 addition & 0 deletions crates/xtask/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ enum Cli {
},
}

/// run some cmd
fn cmd(args: impl IntoIterator<Item = impl AsRef<str>>) -> anyhow::Result<()> {
let mut args = args.into_iter();
let mut cmd = std::process::Command::new(args.next().context("no args")?.as_ref());
Expand Down