1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-11-20 12:02:22 +03:00

Fix new clippy 0.1.63 warnings

This commit is contained in:
Kévin Commaille
2022-08-12 10:24:16 +02:00
committed by Quentin Gliech
parent 759809b7fd
commit 5c8b442747
8 changed files with 14 additions and 14 deletions

View File

@@ -200,7 +200,7 @@ fn base62_encode(mut num: u32) -> String {
const CRC: Crc<u32> = Crc::<u32>::new(&CRC_32_ISO_HDLC);
/// Invalid token
#[derive(Debug, Error, PartialEq)]
#[derive(Debug, Error, PartialEq, Eq)]
pub enum TokenFormatError {
/// Overall token format is invalid
#[error("invalid token format")]