Added exception to new lint due to a false positive.

This commit is contained in:
2020-05-13 01:10:49 +01:00
parent ddfa0636af
commit 24b51f4051

View File

@@ -33,6 +33,11 @@
//! | 0x0 | 0x2 | u16 | Card id | This card's ID |
//! | 0x2 | 0x1 | [`CardType`] | Card type | The card type ([Digimon], [Item] or [Digivolve]) |
// Lints
// False positive, we don't use any `unsafe` in impls
// TODO: Remove this lint once it no longer triggers.
#![allow(clippy::unsafe_derive_deserialize)]
// Std
use std::io::{Read, Seek, Write};