-
-
Notifications
You must be signed in to change notification settings - Fork 9
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
Idea: flat sorted output / missing packages only #10
Comments
DavidS
added a commit
to DavidS/cargo-debstatus
that referenced
this issue
Oct 5, 2022
This fixes kpcyrd#10. This depends and includes kpcyrd#15. ```shell ✦ ❯ cargo run -- debstatus --help [...] -a, --all Don't truncate dependencies that have already been displayed -d, --duplicate Show only dependencies which come in multiple versions (implies -i) -m, --missing Show only dependencies which are missing or are outdated [...] ✦ ❯ cargo run -- debstatus --missing [...] cargo-debstatus v0.4.0 (/home/david/github/cargo-debstatus) ├── postgres v0.19.1 │ └── tokio-postgres v0.7.2 ✦ ❯ cargo run -- debstatus --missing --no-indent [...] cargo-debstatus v0.4.0 (/home/david/github/cargo-debstatus) postgres v0.19.1 tokio-postgres v0.7.2 ✦ ❯ ```
DavidS
added a commit
to DavidS/cargo-debstatus
that referenced
this issue
Oct 6, 2022
This fixes kpcyrd#10. This depends and includes kpcyrd#15. ```shell ✦ ❯ cargo run -- debstatus --help [...] -a, --all Don't truncate dependencies that have already been displayed -d, --duplicate Show only dependencies which come in multiple versions (implies -i) -m, --missing Show only dependencies which are missing or are outdated [...] ✦ ❯ cargo run -- debstatus --missing [...] cargo-debstatus v0.4.0 (/home/david/github/cargo-debstatus) ├── postgres v0.19.1 │ └── tokio-postgres v0.7.2 ✦ ❯ cargo run -- debstatus --missing --no-indent [...] cargo-debstatus v0.4.0 (/home/david/github/cargo-debstatus) postgres v0.19.1 tokio-postgres v0.7.2 ✦ ❯ ```
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It would be great to have, as an option, a flat sorted uniq’d list of dependencies (not a tree).
As an option, only show the missing ones.
The text was updated successfully, but these errors were encountered: