You must log in or register to comment.
I don’t have a strong use for this because i mostly just let it rip when it comes to dependency updates, but I wanted to say that Rust makes the absolute best CLIs (mostly thanks to
clap
andratatui
).I love that basically any CLI made in Rust will usually get you easy, readable help output, sensible argument parsing, and with just a small amount of additional effort, shell completions.
How do you upgrade your deps?
I used to use ‘cargo upgrade’ from cargo-edit, but it stooped working at some point.
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.