Rename resolver.rs to unnamed.rs in uv-requirements (#2762)

## Summary

We have a few different "resolvers" in here now so the name is
confusing.
This commit is contained in:
Charlie Marsh
2024-04-01 17:40:03 -04:00
committed by GitHub
parent a48bcaecb1
commit d2bbc07b76
2 changed files with 2 additions and 2 deletions
+2 -2
View File
@@ -1,14 +1,14 @@
pub use crate::lookahead::*;
pub use crate::resolver::*;
pub use crate::source_tree::*;
pub use crate::sources::*;
pub use crate::specification::*;
pub use crate::unnamed::*;
mod confirm;
mod lookahead;
mod pyproject;
mod resolver;
mod source_tree;
mod sources;
mod specification;
mod unnamed;
pub mod upgrade;