Skip to content

build(deps): bump clap from 4.3.19 to 4.4.10 #115

build(deps): bump clap from 4.3.19 to 4.4.10

build(deps): bump clap from 4.3.19 to 4.4.10 #115

Triggered via pull request December 4, 2023 13:34
Status Failure
Total duration 2m 27s
Artifacts

check.yml

on: pull_request
stable / fmt
6s
stable / fmt
stable / clippy
18s
stable / clippy
nightly / doc
20s
nightly / doc
Matrix: check
Matrix: msrv
Fit to window
Zoom out
Zoom in

Annotations

8 errors and 1 warning
use of `format!` to build up a string from an iterator: src/label.rs#L207
error: use of `format!` to build up a string from an iterator --> src/label.rs:207:23 | 207 | self.binary = bytes | _______________________^ 208 | | .iter() 209 | | .map(|byte| format!("{byte:08b}")) 210 | | .collect::<String>() | |________________________________^ | help: call `fold` instead --> src/label.rs:209:14 | 209 | .map(|byte| format!("{byte:08b}")) | ^^^ help: ... and use the `write!` macro here --> src/label.rs:209:25 | 209 | .map(|byte| format!("{byte:08b}")) | ^^^^^^^^^^^^^^^^^^^^^ = note: this can be written more efficiently by appending to a `String` directly = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#format_collect = note: `-D clippy::format-collect` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::format_collect)]`
use of `format!` to build up a string from an iterator: src/label.rs#L207
error: use of `format!` to build up a string from an iterator --> src/label.rs:207:23 | 207 | self.binary = bytes | _______________________^ 208 | | .iter() 209 | | .map(|byte| format!("{byte:08b}")) 210 | | .collect::<String>() | |________________________________^ | help: call `fold` instead --> src/label.rs:209:14 | 209 | .map(|byte| format!("{byte:08b}")) | ^^^ help: ... and use the `write!` macro here --> src/label.rs:209:25 | 209 | .map(|byte| format!("{byte:08b}")) | ^^^^^^^^^^^^^^^^^^^^^ = note: this can be written more efficiently by appending to a `String` directly = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#format_collect = note: `-D clippy::format-collect` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::format_collect)]`
stable / clippy
Clippy had exited with the 101 exit code
ubuntu-latest / 1.65.0
Process completed with exit code 101.
windows-latest / 1.65.0
The job was canceled because "ubuntu-latest_1_65_0" failed.
windows-latest / 1.65.0
The operation was canceled.
macos-latest / 1.65.0
The job was canceled because "ubuntu-latest_1_65_0" failed.
macos-latest / 1.65.0
The operation was canceled.
stable / clippy
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/