diff --git a/Cargo.toml b/Cargo.toml index e949b7f46..41f8b5d65 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ resolver = "2" [workspace.package] edition = "2024" -rust-version = "1.86" +rust-version = "1.87" homepage = "https://pypi.org/project/uv/" documentation = "https://pypi.org/project/uv/" repository = "https://github.com/astral-sh/uv" diff --git a/crates/uv-install-wheel/src/wheel.rs b/crates/uv-install-wheel/src/wheel.rs index 778523e64..f795fd329 100644 --- a/crates/uv-install-wheel/src/wheel.rs +++ b/crates/uv-install-wheel/src/wheel.rs @@ -665,8 +665,8 @@ pub(crate) fn install_data( } _ => { return Err(Error::InvalidWheel(format!( - "Unknown wheel data type: {:?}", - entry.file_name() + "Unknown wheel data type: {}", + entry.file_name().display() ))); } }