From 702e87e58d64df5cbc0fd1d1d63672d50a583f6b Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Wed, 23 Nov 2022 16:08:26 +0100 Subject: [PATCH] Remove a soon-to-be-removed `const_err` lint (#731) Removed in Rust 1.66: ``` warning: lint `const_err` has been removed: converted into hard error, see issue #71800 for more information --> subxt/src/lib.rs:114:5 | 114 | const_err, | ^^^^^^^^^ | = note: `#[warn(renamed_and_removed_lints)]` on by default ``` --- subxt/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/subxt/src/lib.rs b/subxt/src/lib.rs index 18e705015a..98660ba4de 100644 --- a/subxt/src/lib.rs +++ b/subxt/src/lib.rs @@ -111,7 +111,6 @@ #![deny( bad_style, - const_err, improper_ctypes, missing_docs, non_shorthand_field_patterns,