diff --git a/src/uint/boxed.rs b/src/uint/boxed.rs index fe779c43..23b268b1 100644 --- a/src/uint/boxed.rs +++ b/src/uint/boxed.rs @@ -36,7 +36,8 @@ use zeroize::Zeroize; /// Unlike many other heap-allocated big integer libraries, this type is not /// arbitrary precision and will wrap at its fixed-precision rather than /// automatically growing. -#[derive(Clone)] +#[allow(clippy::derived_hash_with_manual_eq)] +#[derive(Clone, Hash)] pub struct BoxedUint { /// Boxed slice containing limbs. ///