Add uv- prefix to all internal crates (#7853)

## Summary

Brings more consistency to the repo and ensures that all crates
automatically show up in `--verbose` logging.
This commit is contained in:
Charlie Marsh
2024-10-01 20:15:32 -04:00
committed by GitHub
parent 7b55e97909
commit 14507a1793
319 changed files with 1327 additions and 1317 deletions

View File

@@ -2,8 +2,8 @@ use std::fmt::{Display, Formatter};
use std::ops::Deref;
use std::str::FromStr;
use pep440_rs::Version;
use pep508_rs::{MarkerEnvironment, StringVersion};
use uv_pep440::Version;
use uv_pep508::{MarkerEnvironment, StringVersion};
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct PythonVersion(StringVersion);
@@ -171,7 +171,7 @@ impl PythonVersion {
mod tests {
use std::str::FromStr;
use pep440_rs::{Prerelease, PrereleaseKind, Version};
use uv_pep440::{Prerelease, PrereleaseKind, Version};
use crate::PythonVersion;