Crates.io | cargo-up |
lib.rs | cargo-up |
version | 0.0.6 |
source | src |
created_at | 2020-04-12 23:26:19.931679 |
updated_at | 2022-04-30 04:08:13.778094 |
description | Upgrade your dependencies by automatically fixing your code |
homepage | |
repository | https://github.com/automa-app/cargo-up |
max_upload_size | |
id | 229489 |
size | 117,482 |
Upgrade your dependencies by automatically fixing your code
Dont be afraid to upgrade
cargo install cargo-up --features cli --no-default-features
Assuming that you have a project with the following Cargo.toml
[dependencies]
foo = "0.8.2"
If foo
has released 0.9.0
with breaking changes along with a new release of their
foo_up
which details the changes, you can simply run the following command in your
project:
cargo up dep foo
Your project code will be automatically upgraded to use the new foo@0.9.0
.
NOTE: The tool upgrades to the latest version of the dependency, which means it can do several sequential version upgrades one after the other in a single run.
TODO: