Bump thiserror from 1.0.63 to 1.0.64 #192
clippy
7 warnings
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 0 |
Warning | 7 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.82.0-beta.4 (8c27a2ba6 2024-09-21)
- cargo 1.82.0-beta.4 (8f40fc59f 2024-08-21)
- clippy 0.1.82 (8c27a2b 2024-09-21)
Annotations
Check warning on line 764 in c64basic/src/lib.rs
github-actions / clippy
first doc comment paragraph is too long
warning: first doc comment paragraph is too long
--> c64basic/src/lib.rs:752:1
|
752 | / /// list will take the given PC value and disassembles the Basic line at that location
753 | | /// returning a string for the line and the PC of the next line. This does no sanity
754 | | /// checking so a basic program which points to itself for listing will infinite loop
755 | | /// if the PC values passed in aren't compared for loops.
... |
763 | | ///
764 | | /// Can return errors for invalid tokens (not all u8 values are valid tokens)
| |_
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_long_first_doc_paragraph
Check warning on line 41 in c64basic/src/lib.rs
github-actions / clippy
first doc comment paragraph is too long
warning: first doc comment paragraph is too long
--> c64basic/src/lib.rs:39:1
|
39 | / /// All of the c64 basic keywords. Where the actual keyword can't be expressed directly
40 | | /// as an enum use `to_string` from strum to make it usable with `FromStr`, etc.
41 | | /// All keyword documentation below comes from the [c64 wiki](https://www.c64-wiki.com/wiki/BASIC_token)
| |_
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_long_first_doc_paragraph
= note: `#[warn(clippy::too_long_first_doc_paragraph)]` on by default
Check warning on line 7081 in cpu/src/lib.rs
github-actions / clippy
first doc comment paragraph is too long
warning: first doc comment paragraph is too long
--> cpu/src/lib.rs:7078:1
|
7078 | / /// A `RecordRAM` does all of the RAM operations by passing them through to
7079 | | /// the underlying RAM but records the address used and the style of operation.
7080 | | /// This is used by each of the CPU types to implement RDY correctly as we
7081 | | /// can only start RDY once we're on a read cycle.
| |_
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_long_first_doc_paragraph
Check warning on line 1222 in cpu/src/lib.rs
github-actions / clippy
first doc comment paragraph is too long
warning: first doc comment paragraph is too long
--> cpu/src/lib.rs:1219:1
|
1219 | / /// The CMOS implementation for the 65SC02 architecture.
1220 | | /// Fixes many bugs from the 6502 (no more undocumented opcodes) and adds
1221 | | /// additional instructions. This has no rockwell or WDC extensions. Those are all
1222 | | /// 1 cycle NOP in this case.
| |_
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_long_first_doc_paragraph
help: add an empty line
|
1219 ~ /// The CMOS implementation for the 65SC02 architecture.
1220 + ///
|
Check warning on line 1213 in cpu/src/lib.rs
github-actions / clippy
first doc comment paragraph is too long
warning: first doc comment paragraph is too long
--> cpu/src/lib.rs:1210:1
|
1210 | / /// The CMOS implementation for the 65C02 architecture.
1211 | | /// Fixes many bugs from the 6502 (no more undocumented opcodes) and adds
1212 | | /// additional instructions.
1213 | | /// This implementation is the Rockwell variant which has everything except WAI/STP
| |_
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_long_first_doc_paragraph
help: add an empty line
|
1210 ~ /// The CMOS implementation for the 65C02 architecture.
1211 + ///
|
Check warning on line 1204 in cpu/src/lib.rs
github-actions / clippy
first doc comment paragraph is too long
warning: first doc comment paragraph is too long
--> cpu/src/lib.rs:1201:1
|
1201 | / /// The CMOS implementation for the 65C02 architecture.
1202 | | /// Fixes many bugs from the 6502 (no more undocumented opcodes) and adds
1203 | | /// additional instructions.
1204 | | /// This implementation is the full WDC additions (all Rockwell plus WAI and STP).
| |_
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_long_first_doc_paragraph
help: add an empty line
|
1201 ~ /// The CMOS implementation for the 65C02 architecture.
1202 + ///
|
Check warning on line 596 in cpu/src/lib.rs
github-actions / clippy
first doc comment paragraph is too long
warning: first doc comment paragraph is too long
--> cpu/src/lib.rs:593:1
|
593 | / /// Flags defines a type to represent the processor flags.
594 | | /// It will print out with all of the flag values but otherwise
595 | | /// can be treated as a u8 when needed.
596 | | /// NOTE: S1 is always on so a default will create as such.
| |_
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_long_first_doc_paragraph
= note: `#[warn(clippy::too_long_first_doc_paragraph)]` on by default
help: add an empty line
|
593 ~ /// Flags defines a type to represent the processor flags.
594 + ///
|