Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"cargo update" should say what happened #984

Closed
sfackler opened this issue Nov 26, 2014 · 0 comments
Closed

"cargo update" should say what happened #984

sfackler opened this issue Nov 26, 2014 · 0 comments
Labels
E-easy Experience: Easy

Comments

@sfackler
Copy link
Member

If my Cargo.lock has me pinned to e.g. openssl:0.1.0, and I run cargo update -p openssl, all I see is

.. ❯ cargo update -p openssl
    Updating registry `https://github.com/rust-lang/crates.io-index`

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

.. ❯ cargo update -p openssl
    Updating registry `https://github.com/rust-lang/crates.io-index`
    Updating openssl-sys 0.1.0 -> 0.1.1
    Updating openssl 0.1.0 -> 0.1.1
@alexcrichton alexcrichton added the E-easy Experience: Easy label Feb 11, 2015
bors added a commit that referenced this issue Aug 28, 2015
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
@bors bors closed this as completed in 492b582 Aug 28, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
E-easy Experience: Easy
Projects
None yet
Development

No branches or pull requests

2 participants