From 69cd9980e87aae4722963616b8f997249be6a300 Mon Sep 17 00:00:00 2001 From: Martin Grigorov Date: Fri, 12 Jul 2024 11:49:13 +0300 Subject: [PATCH] [NO-JIRA]: [Rust] Revert a temporary workaround for a problem in Darling dependency (#3018) Introduced-with: https://github.com/apache/avro/commit/2c484c638cbad34fd1a683a7812564972af751f4 Fixed upstream with: https://github.com/TedDriggs/darling/pull/296 Signed-off-by: Martin Tzvetanov Grigorov --- lang/rust/avro_derive/src/lib.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lang/rust/avro_derive/src/lib.rs b/lang/rust/avro_derive/src/lib.rs index e51d49d0e8a..eeeaa93a48d 100644 --- a/lang/rust/avro_derive/src/lib.rs +++ b/lang/rust/avro_derive/src/lib.rs @@ -15,10 +15,6 @@ // specific language governing permissions and limitations // under the License. -// for Rust versions older than 1.79.0 -#![allow(unknown_lints)] -// Allow until https://github.com/TedDriggs/darling/pull/292 is resolved -#![allow(clippy::manual_unwrap_or_default)] use darling::FromAttributes; use proc_macro2::{Span, TokenStream}; use quote::quote;