Frederick Zhang

Results 190 comments of Frederick Zhang

As `cargo-outdated` is supposed to be merged into `cargo` ultimately in the future, I don't think this would be an appropriate action to take.

@WiSaGaN rust-lang/cargo#4309 But even if we put this issue aside, since `cargo-outdated` has used too many `cargo` functions, e.g. resolving dependencies, updating various sources, querying crates.io registry, etc, etc, it's...

Kinda related to #52 , but with different requirements. And I need to test whether the yanked ones could actually be captured by `cargo update` or not... e.g. if a...

Printing out a tree like [`cargo-tree`](https://crates.io/crates/cargo-tree) has already been on the table but currently I am keener on eliminating other bugs rather than implementing new features. On the other hand,...

@Keats You can, with `cargo outdated -R` (or `cargo outdated -d 1`)

@shepmaster For instance, highlight direct dependencies in green? ![image](https://user-images.githubusercontent.com/4507647/29866283-51ef10f4-8dbb-11e7-85e4-ece246d6b771.png)

@Keats > If you have a depth other than `1` enabled, I think grouping the direct dependencies at the top and separating the transitive one would be clearer than using...

@shepmaster Well, later I reconsidered the function of grouping lines by ancestors (direct dependencies). A problem with it is that currently the list is sorted and deduplidated so grouping means...

I think one of the reasons why such a behaviour is desirable, as mentioned [here](https://github.com/kbknapp/cargo-outdated/pull/51#issuecomment-323970701) by @SergioBenitez, is that we would like hide those dependencies which we are not really...