Dessalines@lemmy.ml to Rust Programming@lemmy.ml · 1 month agoBenJeau/cargo-interactive-update: A cargo extension CLI tool to update your cargo direct dependencies interactively to the latest versiongithub.comexternal-linkmessage-square7fedilinkarrow-up111arrow-down11cross-posted to: [email protected]
arrow-up110arrow-down1external-linkBenJeau/cargo-interactive-update: A cargo extension CLI tool to update your cargo direct dependencies interactively to the latest versiongithub.comDessalines@lemmy.ml to Rust Programming@lemmy.ml · 1 month agomessage-square7fedilinkcross-posted to: [email protected]
minus-squarevext01@lemmy.sdf.orglinkfedilinkarrow-up1·1 month 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-up4·1 month 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.
minus-squareBB_C@programming.devlinkfedilinkarrow-up2·1 month ago Since cargo-edit broke Sparse indices support got added in last September. A perma-WIP pull request that added support for them existed for much longer.
minus-squaretaladarlinkfedilinkarrow-up1·8 days agoI usually use cargo upgrade -i allow --pinned --verbose and that works just fine. What isn’t working for you?
minus-squarevext01@lemmy.sdf.orglinkfedilinkarrow-up1·8 days agoIt was fixed. The sparse index broke it for a few months.
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.
Sparse indices support got added in last September. A perma-WIP pull request that added support for them existed for much longer.
I usually use
cargo upgrade -i allow --pinned --verbose
and that works just fine. What isn’t working for you?It was fixed.
The sparse index broke it for a few months.