You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I used cargo upgrade -i --recursive on my project with lots of outdated dependencies, it upgraded only part of them. I needed to use cargo update afterwards to upgrade the rest. What is the reason for that behavior? Is it expected? If yes, should one use cargo upgrade followed by cargo update or the other way around?
When I used
cargo upgrade -i --recursive
on my project with lots of outdated dependencies, it upgraded only part of them. I needed to usecargo update
afterwards to upgrade the rest. What is the reason for that behavior? Is it expected? If yes, should one usecargo upgrade
followed bycargo update
or the other way around?I'm using cargo-edit-upgrade 0.12.0.
Steps to reproduce:
cargo upgrade -i --recursive --verbose
to upgraded all dependencies recursively to the latest versions:(It's also strange that it printed a suggestion to rerun with
--verbose
, even though I already added it, but that's another bug to report.)cargo outdated -R
to check only direct dependencies:The direct dependencies were correctly upgraded.
cargo outdated
to check indirect dependencies:We can see that lots of indirect dependencies are still outdated, even though we used
--recursive
flag.cargo update
to update indirect dependencies:cargo outdated
again:Only now all dependencies are upgraded.
The text was updated successfully, but these errors were encountered: