We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5a1e8c7 + 05c94b4 commit 60db207Copy full SHA for 60db207
src/armor/reader.rs
@@ -387,6 +387,8 @@ impl<R: Read + Seek> Dearmor<R> {
387
self.base_decoder = Some(Base64Decoder::new(Base64Reader::new(LineReader::new(b))));
388
}
389
390
+ // "allow" as workaround for https://github.com/rust-lang/rust-clippy/issues/12208
391
+ #[allow(clippy::unused_io_amount)]
392
let size = if let Some(ref mut base_decoder) = self.base_decoder {
393
base_decoder.read(into)?
394
} else {
0 commit comments