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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

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;