Fix lints for Rust 1.86

This commit is contained in:
Héctor Ramón Jiménez 2025-04-03 16:59:55 +02:00
parent 1b22d7d5fc
commit 53ce0e3a88
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
6 changed files with 21 additions and 19 deletions

View file

@ -120,9 +120,11 @@ impl Value {
/// dot ('•') character.
pub fn secure(&self) -> Self {
Self {
graphemes: std::iter::repeat(String::from(""))
.take(self.graphemes.len())
.collect(),
graphemes: std::iter::repeat_n(
String::from(""),
self.graphemes.len(),
)
.collect(),
}
}
}

View file

@ -386,9 +386,11 @@ where
renderer,
&layout::Limits::new(
Size::ZERO,
self.snap_within_viewport
.then(|| viewport.size())
.unwrap_or(Size::INFINITY),
if self.snap_within_viewport {
viewport.size()
} else {
Size::INFINITY
},
)
.shrink(Padding::new(self.padding)),
);