mirror of
https://github.com/astral-sh/uv.git
synced 2025-11-24 13:20:53 +00:00
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:
parent
7b55e97909
commit
14507a1793
319 changed files with 1327 additions and 1317 deletions
|
|
@ -5,7 +5,7 @@ use async_http_range_reader::AsyncHttpRangeReaderError;
|
|||
use async_zip::error::ZipError;
|
||||
use url::Url;
|
||||
|
||||
use distribution_filename::{WheelFilename, WheelFilenameError};
|
||||
use uv_distribution_filename::{WheelFilename, WheelFilenameError};
|
||||
use uv_normalize::PackageName;
|
||||
|
||||
use crate::html;
|
||||
|
|
@ -140,7 +140,7 @@ pub enum ErrorKind {
|
|||
UrlParse(#[from] url::ParseError),
|
||||
|
||||
#[error(transparent)]
|
||||
JoinRelativeUrl(#[from] pypi_types::JoinRelativeError),
|
||||
JoinRelativeUrl(#[from] uv_pypi_types::JoinRelativeError),
|
||||
|
||||
#[error("Expected a file URL, but received: {0}")]
|
||||
NonFileUrl(Url),
|
||||
|
|
@ -170,7 +170,7 @@ pub enum ErrorKind {
|
|||
MetadataParseError(
|
||||
WheelFilename,
|
||||
String,
|
||||
#[source] Box<pypi_types::MetadataError>,
|
||||
#[source] Box<uv_pypi_types::MetadataError>,
|
||||
),
|
||||
|
||||
/// The metadata file was not found in the wheel.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue