diff --git a/crates/uv-distribution-types/src/installed.rs b/crates/uv-distribution-types/src/installed.rs
index c95884bf6..c3d7d5eef 100644
--- a/crates/uv-distribution-types/src/installed.rs
+++ b/crates/uv-distribution-types/src/installed.rs
@@ -136,9 +136,9 @@ impl InstalledDist {
let name = PackageName::from_str(name)?;
let version = Version::from_str(version)?;
- let cache_info = Self::cache_info(path)?;
+ let cache_info = Self::read_cache_info(path)?;
- return if let Some(direct_url) = Self::direct_url(path)? {
+ return if let Some(direct_url) = Self::read_direct_url(path)? {
match Url::try_from(&direct_url) {
Ok(url) => Ok(Some(Self::Url(InstalledDirectUrlDist {
name,
@@ -304,7 +304,7 @@ impl InstalledDist {
}
/// Read the `direct_url.json` file from a `.dist-info` directory.
- pub fn direct_url(path: &Path) -> Result