Move workspace abstractions to uv-workspace crate (#5236)

## Summary

These are really different from the rest of the existing crate as
evidenced by the bifurcation in the requirements.
This commit is contained in:
Charlie Marsh 2024-07-19 22:15:32 -04:00 committed by GitHub
parent 1243c5e28c
commit 841edc3718
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
32 changed files with 142 additions and 73 deletions

View file

@ -43,9 +43,9 @@ use pypi_types::VerbatimParsedUrl;
use requirements_txt::{RequirementsTxt, RequirementsTxtRequirement};
use uv_client::BaseClientBuilder;
use uv_configuration::{NoBinary, NoBuild};
use uv_distribution::pyproject::PyProjectToml;
use uv_fs::Simplified;
use uv_normalize::{ExtraName, PackageName};
use uv_workspace::pyproject::PyProjectToml;
use crate::RequirementsSource;