Skip to content

ci: Unshadow purge child dependency cleanup test #986

ci: Unshadow purge child dependency cleanup test

ci: Unshadow purge child dependency cleanup test #986

Triggered via push February 28, 2026 06:16
Status Success
Total duration 3m 38s
Artifacts
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}")); |