You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It turns out that it bumped the version to 0.1.1, but I have no way of knowing that without looking in the lockfile or building and seeing what version pops up there. It'd be nice if it had some output like
Compare #1621. Like that pull request, this one solves #984.
I have rewritten most of @pyfisch's logic to account for @alexcrichton's comments. Specifically, this code will correctly handle adding/removing multiple versions of one package, as well as several packages with different sources, but the same name.
The output looks like this:
```
[georgev@desertvoice cargo]$ cargo update
Updating registry `https://github.com/rust-lang/crates.io-index`
Updating libc v0.1.8 -> v0.1.10
Updating memchr v0.1.3 -> v0.1.5
Updating num v0.1.26 -> v0.1.27
Updating rand v0.3.9 -> v0.3.10
Updating rustc-serialize v0.3.15 -> v0.3.16
```
Comments welcome.
r? @alexcrichton
If my Cargo.lock has me pinned to e.g. openssl:0.1.0, and I run
cargo update -p openssl
, all I see isIt turns out that it bumped the version to 0.1.1, but I have no way of knowing that without looking in the lockfile or building and seeing what version pops up there. It'd be nice if it had some output like
The text was updated successfully, but these errors were encountered: