Skip to content

String parsing for char[] #743

String parsing for char[]

String parsing for char[] #743

Triggered via pull request July 2, 2025 00:14
Status Failure
Total duration 20m 52s
Artifacts
This run and associated checks have been archived and are scheduled for deletion. Learn more about checks retention

test.yml

on: pull_request
Matrix: internal-tests
Matrix: msrv
test-embedded-size
37s
test-embedded-size
Fit to window
Zoom out
Zoom in

Annotations

1 error and 1 warning
test-embedded-size
Process completed with exit code 101.
variables can be used directly in the `format!` string: mavlink-bindgen/src/parser.rs#L1046
warning: variables can be used directly in the `format!` string --> mavlink-bindgen/src/parser.rs:1046:29 | 1046 | String(size) => format!("arrayvec::ArrayString<{}>", size), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = 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 | 1046 - String(size) => format!("arrayvec::ArrayString<{}>", size), 1046 + String(size) => format!("arrayvec::ArrayString<{size}>"), |