nixpkgs 25.11, clippy fixes

This commit is contained in:
Robin Appelman 2025-12-01 21:15:50 +01:00
commit 564d719bb9
11 changed files with 39 additions and 36 deletions

View file

@ -18,7 +18,7 @@ pub struct RarEntry {
}
impl ArchiveEntry for RarEntry {
fn name(&self) -> Cow<str> {
fn name<'a>(&'a self) -> Cow<'a, str> {
self.name.as_str().into()
}