Skip to content

Bump tempfile from 3.25.0 to 3.26.0 (#4061) #1624

Bump tempfile from 3.25.0 to 3.26.0 (#4061)

Bump tempfile from 3.25.0 to 3.26.0 (#4061) #1624

Triggered via push February 24, 2026 15:14
Status Success
Total duration 1m 21s
Artifacts

checks.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

3 warnings
variables can be used directly in the `format!` string: src/taskchampion-cpp/src/lib.rs#L377
warning: variables can be used directly in the `format!` string --> src/taskchampion-cpp/src/lib.rs:377:9 | 377 | panic!("{} is not a valid UUID", uuid); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args help: change this to | 377 - panic!("{} is not a valid UUID", uuid); 377 + panic!("{uuid} is not a valid UUID"); |
variables can be used directly in the `format!` string: src/taskchampion-cpp/src/lib.rs#L334
warning: variables can be used directly in the `format!` string --> src/taskchampion-cpp/src/lib.rs:334:13 | 334 | write!(f, "{}", entire_msg) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args help: change this to | 334 - write!(f, "{}", entire_msg) 334 + write!(f, "{entire_msg}") |
variables can be used directly in the `format!` string: src/taskchampion-cpp/src/lib.rs#L333
warning: variables can be used directly in the `format!` string --> src/taskchampion-cpp/src/lib.rs:333:47 | 333 | .fold(err.to_string(), |a, b| format!("{}: {}", a, b)); | ^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args = note: `#[warn(clippy::uninlined_format_args)]` on by default help: change this to | 333 - .fold(err.to_string(), |a, b| format!("{}: {}", a, b)); 333 + .fold(err.to_string(), |a, b| format!("{a}: {b}")); |