Reduce visibility of lowering (#4055)

## Summary

This makes `lowering.rs` internal to the metadata package.
This commit is contained in:
Charlie Marsh 2024-06-05 13:39:37 -04:00 committed by GitHub
parent 34f847bb68
commit c97427d530
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 401 additions and 409 deletions

View file

@ -4,7 +4,6 @@ pub use error::Error;
pub use index::{BuiltWheelIndex, RegistryWheelIndex};
pub use metadata::{ArchiveMetadata, Metadata};
pub use reporter::Reporter;
use requirement_lowering::LoweringError;
pub use workspace::{ProjectWorkspace, Workspace, WorkspaceError, WorkspaceMember};
mod archive;
@ -16,6 +15,5 @@ mod locks;
mod metadata;
pub mod pyproject;
mod reporter;
mod requirement_lowering;
mod source;
mod workspace;