Hi,
I build my Rust code as part of another build system which compiles both Rust/C/C++/etc code. The build system invokes Cargo when compiling the code and everything works as expected.
The problem is that error reporting is relative to the source directory. This is usually fine if you work on just one crate but I build several crates from a root directory and when I get a compile error in src/file.rs
it makes it really hard to goto that file as the editor has no idea where it actually is.
So I wonder if there is an option for Cargo to always print full paths to files?
Cheers!