Skip to content

rename

rename #147

Triggered via push September 21, 2023 03:28
Status Failure
Total duration 56s
Artifacts

publish-docs.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

3 errors and 1 warning
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.37/src/wrapper.rs#L502
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.37/src/wrapper.rs:502:33 | 502 | let proc_macro::LineColumn { line, column } = s.end(); | ^^^^^^^^^^ not found in `proc_macro` | help: consider importing one of these items | 1 + use crate::LineColumn; | 1 + use crate::fallback::LineColumn; | help: if you import `LineColumn`, refer to it directly | 502 - let proc_macro::LineColumn { line, column } = s.end(); 502 + let LineColumn { line, column } = s.end(); |
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.37/src/wrapper.rs#L485
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.37/src/wrapper.rs:485:33 | 485 | let proc_macro::LineColumn { line, column } = s.start(); | ^^^^^^^^^^ not found in `proc_macro` | help: consider importing one of these items | 1 + use crate::LineColumn; | 1 + use crate::fallback::LineColumn; | help: if you import `LineColumn`, refer to it directly | 485 - let proc_macro::LineColumn { line, column } = s.start(); 485 + let LineColumn { line, column } = s.start(); |
site
Process completed with exit code 3.
site
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/