Merge pull request #4 from dev-ardi/dependabot/cargo/postcard-1.1.1 #9
Annotations
9 warnings
fmt
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
doc
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
clippy
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
unused imports: `Block` and `Paragraph`:
src/view.rs#L2
warning: unused imports: `Block` and `Paragraph`
--> src/view.rs:2:24
|
2 | use ratatui::widgets::{Block, Paragraph};
| ^^^^^ ^^^^^^^^^
|
= note: `#[warn(unused_imports)]` on by default
|
unused imports: `DiffMode` and `TestData`:
src/view.rs#L4
warning: unused imports: `DiffMode` and `TestData`
--> src/view.rs:4:26
|
4 | use crate::app::{Config, DiffMode, TestData};
| ^^^^^^^^ ^^^^^^^^
|
unused import: `crate::Stats`:
src/view.rs#L5
warning: unused import: `crate::Stats`
--> src/view.rs:5:5
|
5 | use crate::Stats;
| ^^^^^^^^^^^^
|
unused variable: `diff_mode`:
src/app.rs#L225
warning: unused variable: `diff_mode`
--> src/app.rs:225:13
|
225 | let diff_mode = self.config.diff_mode;
| ^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_diff_mode`
|
= note: `#[warn(unused_variables)]` on by default
|
unused variable: `expected_path`:
src/app.rs#L241
warning: unused variable: `expected_path`
--> src/app.rs:241:13
|
241 | expected_path,
| ^^^^^^^^^^^^^ help: try ignoring the field: `expected_path: _`
|
unused variable: `diff`:
src/app.rs#L488
warning: unused variable: `diff`
--> src/app.rs:488:9
|
488 | let diff = match diffmode {
| ^^^^ help: if this is intentional, prefix it with an underscore: `_diff`
|