mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-04-05 11:20:55 +01:00
refactor: apply clippy lints
This commit is contained in:
parent
2d534a534d
commit
a33302aff9
3 changed files with 3 additions and 3 deletions
|
@ -186,7 +186,7 @@ impl AddCommand {
|
||||||
.path
|
.path
|
||||||
.to_string()
|
.to_string()
|
||||||
.split('/')
|
.split('/')
|
||||||
.last()
|
.next_back()
|
||||||
.map(|s| s.to_string())
|
.map(|s| s.to_string())
|
||||||
.unwrap_or(url.path.to_string()),
|
.unwrap_or(url.path.to_string()),
|
||||||
AnyPackageIdentifier::Workspace(versioned) => versioned.0.name().to_string(),
|
AnyPackageIdentifier::Workspace(versioned) => versioned.0.name().to_string(),
|
||||||
|
|
|
@ -318,7 +318,7 @@ pub async fn install(
|
||||||
.await?
|
.await?
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.filter(|version| version_matches(version, &req))
|
.filter(|version| version_matches(version, &req))
|
||||||
.last()
|
.next_back()
|
||||||
.map(|version| (engine, version)),
|
.map(|version| (engine, version)),
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
|
|
|
@ -185,7 +185,7 @@ pub async fn get_or_download_engine(
|
||||||
let max_matching = installed_versions
|
let max_matching = installed_versions
|
||||||
.iter()
|
.iter()
|
||||||
.filter(|v| version_matches(v, &req))
|
.filter(|v| version_matches(v, &req))
|
||||||
.last();
|
.next_back();
|
||||||
if let Some(version) = max_matching {
|
if let Some(version) = max_matching {
|
||||||
return Ok(path
|
return Ok(path
|
||||||
.join(version.to_string())
|
.join(version.to_string())
|
||||||
|
|
Loading…
Add table
Reference in a new issue