Skip to content

Commit

Permalink
Allow clippy::derive_partial_eq_without_eq
Browse files Browse the repository at this point in the history
  • Loading branch information
Nugine committed Jan 18, 2023
1 parent 7576fbe commit b196af6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions rust-runtime/aws-smithy-http-server-python/src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
* SPDX-License-Identifier: Apache-2.0
*/

#![allow(clippy::derive_partial_eq_without_eq)] // TODO: derive Eq for appropriate types

pub mod collection;
pub mod error;

Expand Down
1 change: 1 addition & 0 deletions rust-runtime/aws-smithy-types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
rust_2018_idioms,
unreachable_pub
)]
#![allow(clippy::derive_partial_eq_without_eq)] // TODO: derive Eq for appropriate types

use crate::error::{TryFromNumberError, TryFromNumberErrorKind};
use std::collections::HashMap;
Expand Down
3 changes: 3 additions & 0 deletions rust-runtime/aws-smithy-xml/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@

//! Abstractions for Smithy
//! [XML Binding Traits](https://awslabs.github.io/smithy/1.0/spec/core/xml-traits.html)

#![allow(clippy::derive_partial_eq_without_eq)] // TODO: derive Eq for appropriate types

pub mod decode;
pub mod encode;
mod escape;
Expand Down

0 comments on commit b196af6

Please sign in to comment.