Feat/cs/cargo fixes #120
GitHub Actions / clippy
succeeded
Dec 27, 2024 in 0s
clippy
2 warnings
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 0 |
Warning | 2 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.83.0 (90b35a623 2024-11-26)
- cargo 1.83.0 (5ffbef321 2024-10-29)
- clippy 0.1.83 (90b35a6 2024-11-26)
Annotations
Check warning on line 87 in src/util/aggregators/counter.rs
github-actions / clippy
methods `purge_from_state`, `decrement`, and `delete` are never used
warning: methods `purge_from_state`, `decrement`, and `delete` are never used
--> src/util/aggregators/counter.rs:87:8
|
59 | impl Counter {
| ------------ methods in this implementation
...
87 | fn purge_from_state(&mut self, item: &str) {
| ^^^^^^^^^^^^^^^^
...
115 | fn decrement(&mut self, item: &str) {
| ^^^^^^^^^
...
134 | fn delete(&mut self, item: &str) {
| ^^^^^^
Check warning on line 122 in src/extensions/parser.rs
github-actions / clippy
associated function `new` is never used
warning: associated function `new` is never used
--> src/extensions/parser.rs:122:12
|
120 | impl Parser {
| ----------- associated function in this implementation
121 | /// Create an instance of a parser
122 | pub fn new(
| ^^^
|
= note: `#[warn(dead_code)]` on by default
Loading