ignore any warnings or lints in dump.rs

This commit is contained in:
Vincent Breitmoser
2025-09-29 21:36:59 +02:00
parent 178dfb9dec
commit 893442bc4e

View File

@@ -1,3 +1,8 @@
// This file is externally pulled from sequoia upstream. Don't bother with any warnings or linting
#![allow(warnings)]
#![allow(clippy)]
#![allow(unknown_lints)]
use std::io::{self, Read};
use sequoia_openpgp::crypto::S2K;