Y
Hacker News
new
|
ask
|
show
|
jobs
by
cm3
3700 days ago
I see there is `cargo install` which will fetch and build an executable from crates.io, is there no `cargo update` for `install`?
1 comments
steveklabnik
3700 days ago
https://github.com/rust-lang/cargo/pull/2405
landed, but
https://github.com/rust-lang/cargo/issues/2082
is similar too and is still open.
link
cm3
3700 days ago
Interesting, but I was thinking more of something like "update installed binaries with latest version from index". This doesn't look like it.
link
steveklabnik
3700 days ago
Ah yeah, it's per-thing, not every thing you've installed, currently. cargo install --list does list all the things you've installed, so it wouldn't be too big of a deal to add; the pieces are all there.
link