logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Cargo Update - Manage Rust Dependencies | Online Free DevTools by Hexmos

Manage Rust dependencies efficiently with Cargo Update. Get the latest versions or specify precise versions for your Rust projects. Free online tool, no registration required.

cargo-update

Update dependencies as recorded in Cargo.lock. More information: https://doc.rust-lang.org/cargo/commands/cargo-update.html.

  • Update dependencies in Cargo.lock to the latest possible version:

cargo update

  • Display what would be updated, but don’t actually write the lockfile:

cargo update {{[-n|--dry-run]}}

  • Update only the specified dependencies:

cargo update --package {{dependency1}} --package {{dependency2}} --package {{dependency3}}

  • Set a specific dependency to a specific version:

cargo update --package {{dependency}} --precise {{1.2.3}}

return

See Also