cargo-duplicates icon indicating copy to clipboard operation
cargo-duplicates copied to clipboard

A cargo subcommand for displaying when different versions of a same dependency are pulled in

Results 4 cargo-duplicates issues
Sort by recently updated
recently updated
newest added

I tried running this on Slint (https://github.com/slint-ui/slint) and this is what I got: ```sh ➜ cargo duplicates Package Versions ------- -------- ahash 0.7.6 0.4.7 arrayvec 0.7.2 0.5.2 bare-metal 1.0.0 0.2.5...

I just saw this output of `cargo duplicates` which is more than 1000 lines long. It would've been just fine if you only showed say the first 5 or 10...

Something like `cargo duplicates --fix` and it'll remove duplicates or find ways to minimize the amount of duplicates there are?

It looks like parsing of Cargo.toml files in the context of workspaces does not work. That is parsing does not yet support workspaces. when I supply a valid Cargo.toml file...