Jake Shadle

Results 189 comments of Jake Shadle

Nice, looking forward to it! Codespan is a great library!

This is already supported, `cargo deny check` by default will run all checks, but you can specify which checks to run, eg `cargo deny --all-features check advisories`

I think such a feature _might_ be nice, but I'm not completely sold. One issue would be that figuring out which crates are "popular" would require some kind of external...

Ahh nice, might take a look at that for a workaround!

This relates a bit to #136, where the intention would be to actual properly parse Cargo.toml manifests for doing error reporting, so having that utility (probably in a separate crate...

Are you interested in that flag only for the `list` subcommand or for `check` as well?

Cool. Let me know if you have ideas for other improvements to the `list` subcommand, it was kind of added just because we have all of the information available and...

So you are wanting to opt in to detecting multiple versions of the same crate, rather than needing to mark one or more duplicates via the [`skip`](https://embarkstudios.github.io/cargo-deny/checks/bans/cfg.html#the-skip-field-optional) section? Can you...

You can try adding this to your config to see if that resolves this issue. ``` [advisories] git-fetch-with-cli = true ``` Otherwise you could add a PR to improve the...