-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
when reading a bad lock file give better error messages #5684
Comments
Agreed! Ideally Cargo would just deal with merge markers in Cargo.lock, and the suggestion on that thread of "start from master and then re-resolve" is basically what Cargo would do and seems like a great strategy to me! |
I was thinking something more modest. The lock file (like this one) that is in a inconsistent state (however it got that way) should lead good error message. As the existing is pretty bad. C:\test> cargo build
error: failed to parse lock file at: C:\test\Cargo.lock
To learn more, run the command again with --verbose. the
But it would be much better if it suggested I think actually doing a merge would be a much bigger problem. |
Hm true! In any case it's hard to imagine a worse situation than we're in today with our current error messages :) |
Looks like this error is generated at: cargo/src/cargo/core/resolver/encode.rs Lines 77 to 92 in f4fd347
That closure is only use 3 times and one of the times we ignore the error. The other 2 are: cargo/src/cargo/core/resolver/encode.rs Line 108 in f4fd347
and cargo/src/cargo/core/resolver/encode.rs Line 121 in f4fd347
In both cases we have an Then update the tests at: cargo/tests/testsuite/bad_config.rs Line 462 in f4fd347
If you could describe how to make these into non |
Sure! I'll hold off on E-easy until there's instructions written up here, but if you're willing to do that I can certainly do the tagging! |
Edited to be more |
Sounds good to me! |
I was hoping you would write instructions for the part I don't know. |
Oh sorry! Typically making something non-verbose entails tracking down the call to |
cargo can silently fix some bad lockfiles (use --locked to disable) Lock files often get corrupted by git merge. This makes all cargo commands silently fix that kind of corruption. If you want to be sure that your CI does not change the lock file you have commited --- Then make sure to use `--locked` in your CI Edit: original description below --------------- This is a continuation of @dwijnand work in #5809, and closes #5684 This adds a `ignore_errors` arg to reading a lock file which ignores sections it doesn't understand. Specifically things that depend on versions that don't exist in the lock file. Then all users pass false except for the two that relate to `update` command. I think the open questions for this pr relate to testing. - Now that we are passing false in all other commands, do they each need a test for a bad lockfile? - Do we need a test with a more subtly corrupted lock file, or is this always sufficient for `update` to clean up?
When we read a lock file we make sure it makes sense and refuse to parse the file if it doesn't. This is the correct behavior but leads to not grate error messages. For example this merge conflickt.
We should find some way to give better error messages, when the file is a valid
Toml
but does not make sense.The text was updated successfully, but these errors were encountered: