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
Normally, cargo commands have the following flags to control which packages are selected
--workspace
--pkgid
--exclude
cargo upgrade instead has
cargo upgrade
cargo update follows the standard model by the selector flags control selecting packages in the lock file to upgrade.
cargo update
Other precedence:
poetry
pyproject.toml
The text was updated successfully, but these errors were encountered:
cargo outdated uses the -i / --ignore flag
cargo outdated
-i
--ignore
See https://crates.io/crates/cargo-outdated
Sorry, something went wrong.
#785 fixed this by removing manifest selection
No branches or pull requests
Normally, cargo commands have the following flags to control which packages are selected
--workspace
to select all workspace members--pkgid
to select specific packages in a workspace--exclude
to de-select specific packages in a workspacecargo upgrade
instead has--workspace
normal--pkgid
normal--exclude
instead this is selecting which dependencies to not upgrade, the opposite of the positional argumentscargo update
follows the standard model by the selector flags control selecting packages in the lock file to upgrade.Other precedence:
poetry
doesn't have bulk upgrading yet, see Suggestion: new command to bump versions of dependencies inpyproject.toml
python-poetry/poetry#461cargo update
orcargo upgrade
and if there is any precedent we can pull fromThe text was updated successfully, but these errors were encountered: