I was write some code and iteratively running cargo check when my computer crashed. Upon restarting, running cargo check gave:
error: An unknown error occurred
To learn more, run the command again with --verbose.
cargo check --verbose gave:
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.