Update Rust toolchain to 1.91 (#21179)

This commit is contained in:
Micha Reiser
2025-11-01 02:50:58 +01:00
committed by GitHub
parent a151f9746d
commit 921f409ee8
17 changed files with 27 additions and 47 deletions

View File

@@ -24,7 +24,7 @@ impl From<String> for PythonPlatform {
fn from(platform: String) -> Self {
match platform.as_str() {
"all" => PythonPlatform::All,
_ => PythonPlatform::Identifier(platform.to_string()),
_ => PythonPlatform::Identifier(platform.clone()),
}
}
}