-
Notifications
You must be signed in to change notification settings - Fork 99
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
cargo outdated
misses things?
#381
Comments
We have a similar case in gst-plugins-rs. For example, Running |
Can you share an exact commit which contains an example of the broken behaviour? That would be a great help with reproduction of the bug. |
|
I have a similar issue |
I have a similar issue: thiserror = "2.0.3" # currently cargo-outdated-outdated 0.16.0 |
E.g., in my case, our
Cargo.lock
file contains:Which is out of date: the latest version on
crates.io
is v0.21.6.However,
cargo outdated
doesn't mention it:In my case, this is a transitive dependency. This seems like it is related to or similar to #105, which did have this comment:
I won't speak to the verbosity half of the comment, but "literally do nothing to get rid of them" — no, in the case that they're semver compat (this is the case here) you can upgrade them with a simple
cargo update -p base64@0.21.4
¹ command, which in my case emits the following diff:And that's it.
(¹I have some transitive deps to other, semver incompat versions of
base64
that require the@
syntax. If you only have a dep against a single version, it's omittable. Simiarly, my diff is also longer, but that's irrelevant.)The text was updated successfully, but these errors were encountered: