Open PaulDance opened 1 year ago
The same can be observed when a pre-release is available: cargo-nextest 0.9.61 -> 0.9.62-a.2
although only *
is used as a version requirement.
I think the easiest would be to simply wait for https://github.com/hi-rustin/cargo-information to be merged directly in Cargo. It already does things intelligently, more so than I would be ready to do at least, and it being merged would mean no optional dependency trouble.
Actually, rust-lang/cargo#11123 should be a preferable solution: not the easiest, but should be the best in terms of integration and report precision.
Considering cargo-information
was recently merged into Cargo as insta-stable and then made available as part of Rust 1.82, using it should be a prime lead to fixing this.
Description If a non-simple version requirement is used and there exists a version of the package newer enough to be outside of the requirement range, the version check reports a new version. That version is therefore displayed and
cargo install
is still called on it and it results in a no-op.Expected behavior Only versions inside the requirement range should be considered and the call should not be made if there is no new version inside it.
To Reproduce Steps to reproduce the behavior:
cargo liner ship
and let it finish the install.Output
Additional information Fixing this won't be easy: it would need to rework the method used, most probably to move away from
cargo search
and to use requests to the registry API.Spawned from #6.