mirror of https://github.com/astral-sh/uv
Don't eagerly stringify
This commit is contained in:
parent
9019fea16c
commit
cc91e47595
|
|
@ -28,6 +28,7 @@ use uv_pep508::{MarkerTree, VersionOrUrl};
|
||||||
use uv_preview::{Preview, PreviewFeatures};
|
use uv_preview::{Preview, PreviewFeatures};
|
||||||
use uv_pypi_types::{ParsedArchiveUrl, ParsedGitUrl, ParsedUrl};
|
use uv_pypi_types::{ParsedArchiveUrl, ParsedGitUrl, ParsedUrl};
|
||||||
use uv_python::{PythonDownloads, PythonEnvironment, PythonPreference, PythonRequest};
|
use uv_python::{PythonDownloads, PythonEnvironment, PythonPreference, PythonRequest};
|
||||||
|
use uv_redacted::DisplaySafeUrl;
|
||||||
use uv_resolver::{FlatIndex, ForkStrategy, Installable, Lock, PrereleaseMode, ResolutionMode};
|
use uv_resolver::{FlatIndex, ForkStrategy, Installable, Lock, PrereleaseMode, ResolutionMode};
|
||||||
use uv_scripts::Pep723Script;
|
use uv_scripts::Pep723Script;
|
||||||
use uv_settings::PythonInstallMirrors;
|
use uv_settings::PythonInstallMirrors;
|
||||||
|
|
@ -1309,7 +1310,7 @@ impl SyncReport {
|
||||||
#[derive(Serialize, Debug, Clone)]
|
#[derive(Serialize, Debug, Clone)]
|
||||||
struct PackageChangeReport {
|
struct PackageChangeReport {
|
||||||
/// The normalized package name.
|
/// The normalized package name.
|
||||||
name: String,
|
name: PackageName,
|
||||||
/// The resolved version of the package.
|
/// The resolved version of the package.
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
version: Option<uv_pep440::Version>,
|
version: Option<uv_pep440::Version>,
|
||||||
|
|
@ -1351,11 +1352,11 @@ impl PackageChangeReport {
|
||||||
|
|
||||||
fn from_dist(dist: &ChangedDist, action: PackageChangeAction) -> Self {
|
fn from_dist(dist: &ChangedDist, action: PackageChangeAction) -> Self {
|
||||||
Self {
|
Self {
|
||||||
name: dist.name().to_string(),
|
name: dist.name().clone(),
|
||||||
version: dist.version().cloned(),
|
version: dist.version().cloned(),
|
||||||
source: dist.url().map(|url| PackageChangeSourceReport {
|
source: dist
|
||||||
url: url.to_string(),
|
.url()
|
||||||
}),
|
.map(|url| PackageChangeSourceReport { url: url.clone() }),
|
||||||
action,
|
action,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1373,7 +1374,7 @@ enum PackageChangeAction {
|
||||||
/// The source for a package change, when it originated from a URL requirement.
|
/// The source for a package change, when it originated from a URL requirement.
|
||||||
#[derive(Serialize, Debug, Clone)]
|
#[derive(Serialize, Debug, Clone)]
|
||||||
struct PackageChangeSourceReport {
|
struct PackageChangeSourceReport {
|
||||||
url: String,
|
url: DisplaySafeUrl,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The report for a lock operation.
|
/// The report for a lock operation.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue