ci: fix errors due GitHub host changes #573
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.77.0-nightly (e51e98dde 2023-12-31)
- cargo 1.77.0-nightly (ac6bbb332 2023-12-26)
- clippy 0.1.77 (e51e98d 2023-12-31)
Annotations
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)
| ^^^^^^^^^^^^^^^^^^^^^^
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();
|
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();
|
Loading