We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I was write some code and iteratively running cargo check when my computer crashed. Upon restarting, running cargo check gave:
cargo check
error: An unknown error occurred To learn more, run the command again with --verbose.
cargo check --verbose gave:
cargo check --verbose
error: dep-info not in an understood format: /home/isaac/prog/rust/text/target/debug/.fingerprint/text-9ae3aaa45655e90e/dep-bin-text-9ae3aaa45655e90e
The contents of the aforementioned file are:
/home/isaac/prog/rust/text/target/debug/deps/text-9ae3aaa45655e90e.rmeta: src/main.rs /home/isaac/prog/rust/text/target/debug/deps/text-9ae3aaa45655e90e.d: src/main.rs src/main.rs:
Notably, running cargo rustc -- -Zno-trans works without error as expected.
cargo rustc -- -Zno-trans
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I was write some code and iteratively running cargo check when my computer crashed. Upon restarting, running
cargo check
gave:cargo check --verbose
gave:The contents of the aforementioned file are:
Notably, running
cargo rustc -- -Zno-trans
works without error as expected.The text was updated successfully, but these errors were encountered: