Skip to content

chore(deps): bump clap from 4.5.51 to 4.5.52 #233

chore(deps): bump clap from 4.5.51 to 4.5.52

chore(deps): bump clap from 4.5.51 to 4.5.52 #233

Triggered via pull request November 17, 2025 21:16
Status Failure
Total duration 4m 22s
Artifacts 3

ci.yml

on: pull_request
Matrix: build
Matrix: lint
Matrix: tests
Fit to window
Zoom out
Zoom in

Annotations

12 errors and 14 warnings
tests (ubuntu-latest, nightly)
Process completed with exit code 101.
tests (macOS-latest, beta)
The strategy configuration was canceled because "tests.ubuntu-latest_nightly" failed
tests (macOS-latest, nightly)
The strategy configuration was canceled because "tests.ubuntu-latest_nightly" failed
tests (macOS-latest, nightly)
The operation was canceled.
tests (windows-latest, stable)
The strategy configuration was canceled because "tests.ubuntu-latest_nightly" failed
tests (windows-latest, stable)
The operation was canceled.
tests (windows-latest, nightly)
The strategy configuration was canceled because "tests.ubuntu-latest_nightly" failed
tests (windows-latest, nightly)
The operation was canceled.
tests (windows-latest, beta)
The strategy configuration was canceled because "tests.ubuntu-latest_nightly" failed
tests (windows-latest, beta)
The operation was canceled.
tests (macOS-latest, stable)
The strategy configuration was canceled because "tests.ubuntu-latest_nightly" failed
tests (macOS-latest, stable)
The operation was canceled.
this `if` statement can be collapsed: src/main.rs#L27
warning: this `if` statement can be collapsed --> src/interactive/controller.rs:27:5 | 27 | / if let Some(expiry) = state.message_expiry { 28 | | if std::time::Instant::now() > expiry { 29 | | state.clear_message(); 30 | | } 31 | | } | |_____^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.91.0/index.html#collapsible_if help: collapse nested if block | 27 ~ if let Some(expiry) = state.message_expiry 28 ~ && std::time::Instant::now() > expiry { 29 | state.clear_message(); 30 ~ } |
this `if` statement can be collapsed: src/main.rs#L11
warning: this `if` statement can be collapsed --> src/interactive/controller.rs:11:9 | 11 | / if let Event::Key(key_event) = event::read()? { 12 | | if key_event.kind == KeyEventKind::Press { 13 | | match state.mode.clone() { 14 | | Mode::List => handle_list_mode(state, key_event), ... | 20 | | } | |_________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.91.0/index.html#collapsible_if help: collapse nested if block | 11 ~ if let Event::Key(key_event) = event::read()? 12 ~ && key_event.kind == KeyEventKind::Press { 13 | match state.mode.clone() { ... 18 | } 19 ~ } |
this `if` statement can be collapsed: src/main.rs#L10
warning: this `if` statement can be collapsed --> src/interactive/controller.rs:10:5 | 10 | / if event::poll(Duration::from_millis(100))? { 11 | | if let Event::Key(key_event) = event::read()? { 12 | | if key_event.kind == KeyEventKind::Press { 13 | | match state.mode.clone() { ... | 21 | | } | |_____^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.91.0/index.html#collapsible_if help: collapse nested if block | 10 ~ if event::poll(Duration::from_millis(100))? 11 ~ && let Event::Key(key_event) = event::read()? { 12 | if key_event.kind == KeyEventKind::Press { ... 19 | } 20 ~ } |
this `if` statement can be collapsed: src/main.rs#L30
warning: this `if` statement can be collapsed --> src/commands.rs:30:17 | 30 | / if let ErrorKind::CannotFindVariable(key, no_similar_names) = error { 31 | | if !no_similar_names { 32 | | let similar_names = find_similar_string( 33 | | key.clone(), ... | 46 | | } | |_________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.91.0/index.html#collapsible_if = note: `#[warn(clippy::collapsible_if)]` on by default help: collapse nested if block | 30 ~ if let ErrorKind::CannotFindVariable(key, no_similar_names) = error 31 ~ && !no_similar_names { 32 | let similar_names = find_similar_string( ... 44 | } 45 ~ } |
lint (ubuntu-latest)
Resource not accessible by integration - https://docs.github.com/rest/checks/runs#create-a-check-run
lint (ubuntu-latest)
clippy-action doesn't have permissions to create Check Runs, disabling!
this `if` statement can be collapsed: src/main.rs#L27
warning: this `if` statement can be collapsed --> src/interactive/controller.rs:27:5 | 27 | / if let Some(expiry) = state.message_expiry { 28 | | if std::time::Instant::now() > expiry { 29 | | state.clear_message(); 30 | | } 31 | | } | |_____^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.91.0/index.html#collapsible_if help: collapse nested if block | 27 ~ if let Some(expiry) = state.message_expiry 28 ~ && std::time::Instant::now() > expiry { 29 | state.clear_message(); 30 ~ } |
this `if` statement can be collapsed: src/main.rs#L11
warning: this `if` statement can be collapsed --> src/interactive/controller.rs:11:9 | 11 | / if let Event::Key(key_event) = event::read()? { 12 | | if key_event.kind == KeyEventKind::Press { 13 | | match state.mode.clone() { 14 | | Mode::List => handle_list_mode(state, key_event), ... | 20 | | } | |_________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.91.0/index.html#collapsible_if help: collapse nested if block | 11 ~ if let Event::Key(key_event) = event::read()? 12 ~ && key_event.kind == KeyEventKind::Press { 13 | match state.mode.clone() { ... 18 | } 19 ~ } |
this `if` statement can be collapsed: src/main.rs#L10
warning: this `if` statement can be collapsed --> src/interactive/controller.rs:10:5 | 10 | / if event::poll(Duration::from_millis(100))? { 11 | | if let Event::Key(key_event) = event::read()? { 12 | | if key_event.kind == KeyEventKind::Press { 13 | | match state.mode.clone() { ... | 21 | | } | |_____^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.91.0/index.html#collapsible_if help: collapse nested if block | 10 ~ if event::poll(Duration::from_millis(100))? 11 ~ && let Event::Key(key_event) = event::read()? { 12 | if key_event.kind == KeyEventKind::Press { ... 19 | } 20 ~ } |
this `if` statement can be collapsed: src/main.rs#L30
warning: this `if` statement can be collapsed --> src/commands.rs:30:17 | 30 | / if let ErrorKind::CannotFindVariable(key, no_similar_names) = error { 31 | | if !no_similar_names { 32 | | let similar_names = find_similar_string( 33 | | key.clone(), ... | 46 | | } | |_________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.91.0/index.html#collapsible_if = note: `#[warn(clippy::collapsible_if)]` on by default help: collapse nested if block | 30 ~ if let ErrorKind::CannotFindVariable(key, no_similar_names) = error 31 ~ && !no_similar_names { 32 | let similar_names = find_similar_string( ... 44 | } 45 ~ } |
lint (macOS-latest)
Resource not accessible by integration - https://docs.github.com/rest/checks/runs#create-a-check-run
lint (macOS-latest)
clippy-action doesn't have permissions to create Check Runs, disabling!
lint (windows-latest)
Resource not accessible by integration - https://docs.github.com/rest/checks/runs#create-a-check-run
lint (windows-latest)
clippy-action doesn't have permissions to create Check Runs, disabling!

Artifacts

Produced during runtime
Name Size Digest
envfetch-debug-linux
14.1 MB
sha256:2356584e43a6084bc9c0a05c93c3b4b3b09dc948ecc8c72b91b5f7b29feee6be
envfetch-debug-macos
3.86 MB
sha256:338ef37eae3e63c1a490e9363f3a73c55af2040c6b00ee3788dcd5ed78041b23
envfetch-debug-windows
2.51 MB
sha256:6f8b0424fcde76d62b79799330904a0b59e019a08c365b3ff3a5c734ccf8ec2f