add too_many_arguments clippy exception

Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
This commit is contained in:
Maximiliano Sandoval 2025-03-06 14:12:35 +01:00 committed by Wolfgang Bumiller
parent f37ce33164
commit 22285d0d01
2 changed files with 2 additions and 0 deletions

View File

@ -871,6 +871,7 @@ impl Archiver {
.await
}
#[allow(clippy::too_many_arguments)]
async fn add_entry_to_archive<T: SeqWrite + Send>(
&mut self,
encoder: &mut Encoder<'_, T>,

View File

@ -195,6 +195,7 @@ pub async fn dir_or_last_from_group(
type Catalog = CatalogWriter<TokioWriterAdapter<StdChannelWriter<Error>>>;
#[allow(clippy::too_many_arguments)]
async fn backup_directory<P: AsRef<Path>>(
client: &BackupWriter,
dir_path: P,