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 running cargo outdated on such a repository, it will still download all the git submodules while cargo update for example won't.
$ cargo update
Updating git repository `https://github.com/gtk-rs/gtk-rs-core`
Skipping git submodule `https://github.com/gtk-rs/gir` due to update strategy in .gitmodules
Skipping git submodule `https://github.com/gtk-rs/gir-files` due to update strategy in .gitmodules
[...]
$ cargo outdated
Parsing... current workspace
Resolving... current workspace
Updating git submodule `https://github.com/gtk-rs/gir`
Updating git submodule `https://github.com/gtk-rs/gir-files`
The text was updated successfully, but these errors were encountered:
See rust-lang/cargo#10717 for the corresponding fix in cargo.
When running
cargo outdated
on such a repository, it will still download all the git submodules whilecargo update
for example won't.The text was updated successfully, but these errors were encountered: