fmt: disable "unused" warnings.

This commit is contained in:
Dario Nieuwenhuis
2024-03-20 14:53:19 +01:00
parent 7c2aae88da
commit 3d842dac85
22 changed files with 37 additions and 55 deletions

View File

@@ -1,5 +1,5 @@
#![macro_use]
#![allow(unused_macros)]
#![allow(unused)]
use core::fmt::{Debug, Display, LowerHex};
@@ -229,7 +229,6 @@ impl<T, E> Try for Result<T, E> {
}
}
#[allow(unused)]
pub(crate) struct Bytes<'a>(pub &'a [u8]);
impl<'a> Debug for Bytes<'a> {