Bump serde from 1.0.213 to 1.0.214 #2
Annotations
4 errors and 6 warnings
test macos-latest
Process completed with exit code 101.
|
mutable references are not allowed in constant functions:
src/app.rs#L447
error[E0658]: mutable references are not allowed in constant functions
--> src/app.rs:447:30
|
447 | pub const fn rotate_next(&mut self) {
| ^^^^^^^^^
|
= note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
|
clippy
Clippy has exited with exit code 101
|
test windows-latest
Process completed with exit code 1.
|
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`
|