serde: Remove allow attribute that's no longer needed

This commit is contained in:
Jonas Platte 2022-06-21 18:03:34 +02:00
parent 61282642c0
commit f5c734a7b5
No known key found for this signature in database
GPG Key ID: AAA7A61F696C3E0C
3 changed files with 0 additions and 9 deletions

View File

@ -1,6 +1,3 @@
// https://github.com/rust-lang/rust-clippy/issues/8875
#![allow(clippy::derive_partial_eq_without_eq)]
mod string { mod string {
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
use serde_json::{from_value as from_json_value, json, to_value as to_json_value}; use serde_json::{from_value as from_json_value, json, to_value as to_json_value};

View File

@ -1,6 +1,3 @@
// https://github.com/rust-lang/rust-clippy/issues/8875
#![allow(clippy::derive_partial_eq_without_eq)]
use ruma_common::serde::StringEnum; use ruma_common::serde::StringEnum;
use serde_json::{from_value as from_json_value, json, to_value as to_json_value}; use serde_json::{from_value as from_json_value, json, to_value as to_json_value};

View File

@ -1,6 +1,3 @@
// https://github.com/rust-lang/rust-clippy/issues/8875
#![allow(clippy::derive_partial_eq_without_eq)]
use assert_matches::assert_matches; use assert_matches::assert_matches;
use form_urlencoded::Serializer as Encoder; use form_urlencoded::Serializer as Encoder;
use ruma_common::serde::urlencoded; use ruma_common::serde::urlencoded;