From eadd81ab8ff2ccbb6b4450c2bfdb2a0d74a2a47c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Tue, 16 Jul 2024 07:56:06 -0700 Subject: [PATCH] Remove illegal_floating_point_literal_pattern lint Recent versions of Rust have removed the illegal_floating_point_literal_pattern lint. Remove it from our list of lints as well to prevent related warnings from popping up. --- src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 11f0842..3ff9604 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,7 +5,6 @@ bad_style, dead_code, future_incompatible, - illegal_floating_point_literal_pattern, improper_ctypes, late_bound_lifetime_arguments, missing_copy_implementations,