mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-28 15:43:47 +00:00
Move FlatIndex
into the uv-resolver
crate (#2972)
## Summary This lets us remove circular dependencies (in the future, e.g., #2945) that arise from `FlatIndex` needing a bunch of resolver-specific abstractions (like incompatibilities, required hashes, etc.) that aren't necessary to _fetch_ the flat index entries.
This commit is contained in:
parent
a9d554fa90
commit
48ba7df98a
18 changed files with 222 additions and 216 deletions
|
@ -1,6 +1,7 @@
|
|||
pub use dependency_mode::DependencyMode;
|
||||
pub use error::ResolveError;
|
||||
pub use exclusions::Exclusions;
|
||||
pub use flat_index::FlatIndex;
|
||||
pub use manifest::Manifest;
|
||||
pub use options::{Options, OptionsBuilder};
|
||||
pub use preferences::{Preference, PreferenceError};
|
||||
|
@ -24,6 +25,7 @@ mod dependency_provider;
|
|||
mod editables;
|
||||
mod error;
|
||||
mod exclusions;
|
||||
mod flat_index;
|
||||
mod manifest;
|
||||
mod options;
|
||||
mod pins;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue