Bump syn from 2.0.72 to 2.0.82 #1227
GitHub Actions / clippy
succeeded
Oct 21, 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-beta.2 (88c1c3c11 2024-10-18)
- cargo 1.83.0-beta.2 (15fbd2f60 2024-10-08)
- clippy 0.1.83 (88c1c3c 2024-10-18)
Annotations
Check warning on line 7027 in cpu/src/lib.rs
github-actions / clippy
the following explicit lifetimes could be elided: 'a
warning: the following explicit lifetimes could be elided: 'a
--> cpu/src/lib.rs:7027:6
|
7027 | impl<'a> Default for ChipDef<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
= note: `#[warn(clippy::needless_lifetimes)]` on by default
help: elide the lifetimes
|
7027 - impl<'a> Default for ChipDef<'a> {
7027 + impl Default for ChipDef<'_> {
|
Check warning on line 6966 in cpu/src/lib.rs
github-actions / clippy
empty line after outer attribute
warning: empty line after outer attribute
--> cpu/src/lib.rs:6965:5
|
6965 | / #[cfg(not(coverage))]
6966 | |
| |_
6967 | fn wai(&mut self) -> Result<OpState> {
| ------------------------------------ the attribute applies to this method
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_outer_attr
= note: `#[warn(clippy::empty_line_after_outer_attr)]` on by default
= help: if the empty line is unintentional remove it
Loading