6bef1a32b1
## Summary I believe these are not necessary... They're currently used in two places: 1. When building wheels. But that's already wrapped in an in-flight map, which does the same thing. 2. When fetching source distribution metadata. But every route there uses it's own `flock` to coordinate across processes, so this seems redundant?
20 lines
525 B
Rust
20 lines
525 B
Rust
pub use distribution_database::{DistributionDatabase, HttpArchivePointer, LocalArchivePointer};
|
|
pub use download::LocalWheel;
|
|
pub use error::Error;
|
|
pub use index::{BuiltWheelIndex, RegistryWheelIndex};
|
|
pub use metadata::{
|
|
ArchiveMetadata, BuildRequires, FlatRequiresDist, LoweredRequirement, LoweringError, Metadata,
|
|
MetadataError, RequiresDist,
|
|
};
|
|
pub use reporter::Reporter;
|
|
pub use source::prune;
|
|
|
|
mod archive;
|
|
mod distribution_database;
|
|
mod download;
|
|
mod error;
|
|
mod index;
|
|
mod metadata;
|
|
mod reporter;
|
|
mod source;
|