diff --git a/rust-runtime/aws-smithy-http-server-python/src/util.rs b/rust-runtime/aws-smithy-http-server-python/src/util.rs index a971e26343..099de99830 100644 --- a/rust-runtime/aws-smithy-http-server-python/src/util.rs +++ b/rust-runtime/aws-smithy-http-server-python/src/util.rs @@ -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; diff --git a/rust-runtime/aws-smithy-types/src/lib.rs b/rust-runtime/aws-smithy-types/src/lib.rs index f2729cefa1..0159cc56b3 100644 --- a/rust-runtime/aws-smithy-types/src/lib.rs +++ b/rust-runtime/aws-smithy-types/src/lib.rs @@ -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; diff --git a/rust-runtime/aws-smithy-xml/src/lib.rs b/rust-runtime/aws-smithy-xml/src/lib.rs index f9d4e990ce..5cf4fa6306 100644 --- a/rust-runtime/aws-smithy-xml/src/lib.rs +++ b/rust-runtime/aws-smithy-xml/src/lib.rs @@ -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;