refactor: apply clippy lints

This commit is contained in:
daimond113 2025-01-15 21:23:40 +01:00
parent 2d534a534d
commit a33302aff9
No known key found for this signature in database
GPG key ID: 3A8ECE51328B513C
3 changed files with 3 additions and 3 deletions

View file

@ -186,7 +186,7 @@ impl AddCommand {
.path
.to_string()
.split('/')
.last()
.next_back()
.map(|s| s.to_string())
.unwrap_or(url.path.to_string()),
AnyPackageIdentifier::Workspace(versioned) => versioned.0.name().to_string(),

View file

@ -318,7 +318,7 @@ pub async fn install(
.await?
.into_iter()
.filter(|version| version_matches(version, &req))
.last()
.next_back()
.map(|version| (engine, version)),
)
})

View file

@ -185,7 +185,7 @@ pub async fn get_or_download_engine(
let max_matching = installed_versions
.iter()
.filter(|v| version_matches(v, &req))
.last();
.next_back();
if let Some(version) = max_matching {
return Ok(path
.join(version.to_string())