Files
uv/crates/uv-distribution/src/lib.rs
T
Charlie Marsh 6bef1a32b1 Remove in-memory locks from distribution database (#11412)
## 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?
2025-02-20 20:57:31 -08:00

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;