Skip to content

flake: pin Rust to MSRV (1.65.0) #571

flake: pin Rust to MSRV (1.65.0)

flake: pin Rust to MSRV (1.65.0) #571

GitHub Actions / clippy failed Mar 8, 2024 in 0s

clippy

3 errors

Details

Results

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

Versions

  • rustc 1.78.0-nightly (9c3ad802d 2024-03-07)
  • cargo 1.78.0-nightly (a4c63fe53 2024-03-06)
  • clippy 0.1.78 (9c3ad80 2024-03-07)

Annotations

Check failure on line 92 in /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.54/src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unknown feature `proc_macro_span_shrink`

error[E0635]: unknown feature `proc_macro_span_shrink`
  --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.54/src/lib.rs:92:30
   |
92 |     feature(proc_macro_span, proc_macro_span_shrink)
   |                              ^^^^^^^^^^^^^^^^^^^^^^

Check failure on line 489 in /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.54/src/wrapper.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

cannot find struct, variant or union type `LineColumn` in crate `proc_macro`

error[E0422]: cannot find struct, variant or union type `LineColumn` in crate `proc_macro`
   --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.54/src/wrapper.rs:489:33
    |
489 |                 let proc_macro::LineColumn { line, column } = s.end();
    |                                 ^^^^^^^^^^ not found in `proc_macro`
    |
help: consider importing this struct through its public re-export
    |
1   + use crate::LineColumn;
    |
help: if you import `LineColumn`, refer to it directly
    |
489 -                 let proc_macro::LineColumn { line, column } = s.end();
489 +                 let LineColumn { line, column } = s.end();
    |

Check failure on line 475 in /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.54/src/wrapper.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

cannot find struct, variant or union type `LineColumn` in crate `proc_macro`

error[E0422]: cannot find struct, variant or union type `LineColumn` in crate `proc_macro`
   --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.54/src/wrapper.rs:475:33
    |
475 |                 let proc_macro::LineColumn { line, column } = s.start();
    |                                 ^^^^^^^^^^ not found in `proc_macro`
    |
help: consider importing this struct through its public re-export
    |
1   + use crate::LineColumn;
    |
help: if you import `LineColumn`, refer to it directly
    |
475 -                 let proc_macro::LineColumn { line, column } = s.start();
475 +                 let LineColumn { line, column } = s.start();
    |