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
See #476
If you use "*" for the dependency version, cargo cannot resolve the versions correctly:
"*"
[dependencies] html5ever = "*" markup5ever_rcdom = "*"
Fix: use exact dependencies
[dependencies] html5ever = "0.25.2" markup5ever_rcdom = "0.1.0"
Not sure if this is a bug in how the versions have been published, or a bug in cargo itself.
cargo
The text was updated successfully, but these errors were encountered:
Recording of me walking through this, step-by-step, verbatim and demonstrating the bug:
Starts at timestamp 2:30:05: https://youtu.be/xu2r8tuUs6k?t=9005
Exact bug discovered at 2:38:15: https://youtu.be/xu2r8tuUs6k?t=9495
Sorry, something went wrong.
No branches or pull requests
See #476
If you use
"*"
for the dependency version, cargo cannot resolve the versions correctly:Fix: use exact dependencies
Not sure if this is a bug in how the versions have been published, or a bug in
cargo
itself.The text was updated successfully, but these errors were encountered: