Skip to content

Instantly share code, notes, and snippets.

@lmmx
Created May 8, 2025 16:59
Show Gist options
  • Save lmmx/862c59678d3aef3eaa4b8ffb7589aac2 to your computer and use it in GitHub Desktop.
Save lmmx/862c59678d3aef3eaa4b8ffb7589aac2 to your computer and use it in GitHub Desktop.
Find Rust dependencies with distinctly versioned duplicates
cargo tree -e no-dev --duplicates --depth 0 | sed '/^$/d' | grep -v 'dependencies]' | uniq | cut -d ' ' -f 1 | uniq -d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment