Replace repl crate #485
GitHub Actions / clippy
succeeded
Jan 25, 2025 in 0s
clippy
4 warnings
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 0 |
Warning | 4 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.85.0-beta.5 (441650704 2025-01-20)
- cargo 1.85.0-beta.5 (d73d2caf9 2024-12-31)
- clippy 0.1.85 (4416507043 2025-01-20)
Annotations
Check warning on line 31 in tui/src/main.rs
github-actions / clippy
field `messages` is never read
warning: field `messages` is never read
--> tui/src/main.rs:31:5
|
27 | struct App {
| --- field in this struct
...
31 | messages: Vec<String>,
| ^^^^^^^^
|
= note: `#[warn(dead_code)]` on by default
Check warning on line 11 in tui/src/main.rs
github-actions / clippy
unused imports: `Line`, `ListItem`, `List`, and `Span`
warning: unused imports: `Line`, `ListItem`, `List`, and `Span`
--> tui/src/main.rs:11:12
|
11 | text::{Line, Span},
| ^^^^ ^^^^
12 | widgets::{Block, List, ListItem, Paragraph},
| ^^^^ ^^^^^^^^
|
= note: `#[warn(unused_imports)]` on by default
Check warning on line 48 in launch_configuration/src/lib.rs
github-actions / clippy
field `path` is never read
warning: field `path` is never read
--> launch_configuration/src/lib.rs:48:5
|
47 | struct Folder {
| ------ field in this struct
48 | path: String,
| ^^^^
Check warning on line 40 in launch_configuration/src/lib.rs
github-actions / clippy
fields `folders` and `settings` are never read
warning: fields `folders` and `settings` are never read
--> launch_configuration/src/lib.rs:40:9
|
39 | VsCodeWorkspace {
| --------------- fields in this variant
40 | folders: Vec<Folder>,
| ^^^^^^^
41 | settings: HashMap<String, serde_json::Value>,
| ^^^^^^^^
|
= note: `#[warn(dead_code)]` on by default
Loading