From 4e843a35237c2de49d17621dccb4a2a35bb4030c Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Mon, 27 May 2024 12:47:13 -0400 Subject: [PATCH] Remove deny(pointer_structural_match) ``` warning: lint `pointer_structural_match` has been removed: converted into hard error, see RFC #3535 for more information --> aya/src/lib.rs:57:5 | 57 | pointer_structural_match, | ^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `#[warn(renamed_and_removed_lints)]` on by default ``` --- aya/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/aya/src/lib.rs b/aya/src/lib.rs index eca3d072..f974d05f 100644 --- a/aya/src/lib.rs +++ b/aya/src/lib.rs @@ -54,7 +54,6 @@ missing_docs, non_ascii_idents, noop_method_call, - pointer_structural_match, rust_2021_incompatible_closure_captures, rust_2021_incompatible_or_patterns, rust_2021_prefixes_incompatible_syntax,