chore(deps): bump log from 0.4.28 to 0.4.29 #236
Annotations
6 warnings
|
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 ~ }
|
|
|
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 ~ }
|
|
|
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 ~ }
|
|
|
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 ~ }
|
|
|
Resource not accessible by integration - https://docs.github.com/rest/checks/runs#create-a-check-run
|
|
|
The logs for this run have expired and are no longer available.
Loading