https://github.com/araxeus/cargo-upgrade
Tiny cli utility to update all globally installed cargo crates
https://github.com/araxeus/cargo-upgrade
cargo-outdated cargo-subcommand cargo-update cargo-upgrade
Last synced: 15 days ago
JSON representation
Tiny cli utility to update all globally installed cargo crates
- Host: GitHub
- URL: https://github.com/araxeus/cargo-upgrade
- Owner: Araxeus
- License: mit
- Created: 2023-02-25T10:41:25.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-12-14T10:20:36.000Z (over 1 year ago)
- Last Synced: 2025-04-13T07:55:42.983Z (15 days ago)
- Topics: cargo-outdated, cargo-subcommand, cargo-update, cargo-upgrade
- Language: Rust
- Homepage: https://crates.io/crates/cargo-upgrade-command
- Size: 1.26 MB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cargo Upgrade
This tool is designed to help you upgrade your globally installed cargo binaries to the latest version.
## Installation
```bash
cargo install cargo-upgrade-command
```## Available Commands
### `cargo upgrade`
This command will upgrade all of your globally installed cargo binaries to the latest version.

### `cargo upgrade --outdated`
This command will show you if any of your globally installed cargo binaries are out of date.
alias: `cargo upgrade -o` or `cargo upgrade o` or `cargo upgrade list`

### How it works
To get outdated binaries, it will parse `cargo install --list` and then compare the version of each crate with the version in `cargo search --limit=1`.
Then if upgrading, it will run `cargo install --locked `.