Skip to content

Bump syn from 2.0.72 to 2.0.79 #1203

Bump syn from 2.0.72 to 2.0.79

Bump syn from 2.0.72 to 2.0.79 #1203

GitHub Actions / clippy succeeded Sep 30, 2024 in 0s

clippy

5 warnings

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 5
Note 0
Help 0

Versions

  • rustc 1.82.0-beta.5 (6a3b69c6b 2024-09-27)
  • cargo 1.82.0-beta.5 (8f40fc59f 2024-08-21)
  • clippy 0.1.82 (6a3b69c 2024-09-27)

Annotations

Check warning on line 764 in c64basic/src/lib.rs

See this annotation in the file changed.

@github-actions 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 7218 in cpu/src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

first doc comment paragraph is too long

warning: first doc comment paragraph is too long
    --> cpu/src/lib.rs:7214:1
     |
7214 | / /// `FlatRAM` gives a flat 64k RAM block to use.
7215 | | /// It will be initialized to all zeros and `power_on`
7216 | | /// can use a different value if `fill_value` is set.
7217 | | /// Additionally the irq/reset and nmi vectors can be set as well.
7218 | | /// Generally used only for testing.
     | |_
     |
     = 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
     |
7214 ~ /// `FlatRAM` gives a flat 64k RAM block to use.
7215 + ///
     |

Check warning on line 7081 in cpu/src/lib.rs

See this annotation in the file changed.

@github-actions 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

See this annotation in the file changed.

@github-actions 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 596 in cpu/src/lib.rs

See this annotation in the file changed.

@github-actions 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 + ///
    |