DessalinesA to Rust Programming · 11 hours agoBenJeau/cargo-interactive-update: A cargo extension CLI tool to update your cargo direct dependencies interactively to the latest versiongithub.comexternal-linkmessage-square4fedilinkarrow-up18arrow-down11cross-posted to: rust@programming.dev
arrow-up17arrow-down1external-linkBenJeau/cargo-interactive-update: A cargo extension CLI tool to update your cargo direct dependencies interactively to the latest versiongithub.comDessalinesA to Rust Programming · 11 hours agomessage-square4fedilinkcross-posted to: rust@programming.dev
minus-squarevext01@lemmy.sdf.orglinkfedilinkarrow-up1·8 hours agoHow do you upgrade your deps? I used to use ‘cargo upgrade’ from cargo-edit, but it stooped working at some point.
minus-squarevext01@lemmy.sdf.orglinkfedilinkarrow-up3·3 hours agoI think that only updates semver-compatible versions in the lock file. I was looking for something that updates the cargo.toml to not necessarily compatible versions. Since cargo-edit broke, I’ve had to do this by hand.
How do you upgrade your deps?
I used to use ‘cargo upgrade’ from cargo-edit, but it stooped working at some point.
cargo update
… It’s that simple.
I think that only updates semver-compatible versions in the lock file.
I was looking for something that updates the cargo.toml to not necessarily compatible versions.
Since cargo-edit broke, I’ve had to do this by hand.