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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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()),
}
}
}

View file

@ -233,7 +233,7 @@
//! have two live bindings of `x`: `x = 3` and `x = 4`.
//!
//! Another piece of information that the `UseDefMap` needs to provide are reachability constraints.
//! See [`reachability_constraints.rs`] for more details, in particular how they apply to bindings.
//! See `reachability_constraints.rs` for more details, in particular how they apply to bindings.
//!
//! The [`UseDefMapBuilder`] itself just exposes methods for taking a snapshot, resetting to a
//! snapshot, and merging a snapshot into the current state. The logic using these methods lives in