Commits
Click on a commit to change the comparison rangeUse `FxHashSet` for `PipListSettings::exclude` and `PipFreezeSettings::exclude` for O(1) lookups
Refactor the `exclude` field in both `PipListSettings` and
`PipFreezeSettings` from `Vec<PackageName>`/`HashSet<PackageName>`
to `FxHashSet<PackageName>` to enable efficient O(1) lookup operations
when filtering packages during `uv pip list` and `uv pip freeze`.
This change improves performance when checking if packages should be
excluded from the output, especially with many excluded packages.
Closes #17546