chore(deps): bump toml from 0.9.8 to 0.9.9+spec-1.0.0 #238
Annotations
14 warnings
|
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.92.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.92.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.92.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.92.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.92.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.92.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.92.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.92.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
Expired
|
14 MB |
sha256:46b30c493914411c6bde9ebf9e632f37de3dcafac247f2b0a7a3bb76292f5fdf
|
|
|
envfetch-debug-macos
Expired
|
3.8 MB |
sha256:91ff6443c1de0cc9262332e97e3c873a662892109c61e0f08e2e230f84d55a41
|
|
|
envfetch-debug-windows
Expired
|
2.47 MB |
sha256:d4a5e69d303b4dbf80b548c72374660a0161a6398d2b1c32c076b8b599756547
|
|