Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more naming strategies/formats enum types #30

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Update missing and incompleate docs for the new functionailty.

e456c8d
Select commit
Loading
Failed to load commit list.
Open

Add more naming strategies/formats enum types #30

Update missing and incompleate docs for the new functionailty.
e456c8d
Select commit
Loading
Failed to load commit list.
Cirrus CI / test-nightly-x86_64-unknown-linux-gnu completed May 2, 2024 in 24s

Task Summary

Instruction test_bin failed in 00:02

Details

⚠️ Not enough compute credits to prioritize tasks!

✅ 00:00 clone
✅ 00:01 install_dependencies
✅ 00:01 install_rustup
✅ 00:10 install_rust
✅ 00:02 registry
✅ 00:01 target
✅ 00:01 install_cargo_make
✅ 00:01 install_rustup_target
❌ 00:02 test_bin

[cargo-make] INFO - cargo make 0.37.11
[cargo-make] INFO - Calling cargo metadata to extract project info
[cargo-make] INFO - Cargo metadata done
[cargo-make] INFO - Project: names
[cargo-make] INFO - Build File: Makefile.toml
[cargo-make] INFO - Task: test-bin
[cargo-make] INFO - Profile: development
[cargo-make] INFO - Running Task: test-bin
[cargo-make] INFO - Execute Command: "cargo" "test" "--bins" "--target=x86_64-unknown-linux-gnu"
   Compiling version_check v0.9.4
   Compiling proc-macro2 v1.0.36
   Compiling syn v1.0.86
   Compiling libc v0.2.119
   Compiling memchr v2.7.2
   Compiling unicode-xid v0.2.2
error[E0422]: cannot find struct, variant or union type `LineColumn` in crate `proc_macro`
   --> /usr/local/cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.36/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();
    |

error[E0422]: cannot find struct, variant or union type `LineColumn` in crate `proc_macro`
   --> /usr/local/cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.36/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();
    |

For more information about this error, try `rustc --explain E0422`.
error: could not compile `proc-macro2` (lib) due to 2 previous errors
warning: build failed, waiting for other jobs to finish...
[cargo-make] ERROR - Error while executing command, exit code: 101
[cargo-make] WARN - Build Failed.