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

@ -4,7 +4,6 @@ pub use error::Error;
pub use index::{BuiltWheelIndex, RegistryWheelIndex};
pub use metadata::{ArchiveMetadata, Metadata, RequiresDist, DEV_DEPENDENCIES};
pub use reporter::Reporter;
pub use workspace::{ProjectWorkspace, VirtualProject, Workspace, WorkspaceError, WorkspaceMember};
mod archive;
mod distribution_database;
@ -13,8 +12,5 @@ mod error;
mod index;
mod locks;
mod metadata;
pub mod pyproject;
pub mod pyproject_mut;
mod reporter;
mod source;
mod workspace;