From 6ba4323e1dba33b6120f4051fa7fee8d469dc6e7 Mon Sep 17 00:00:00 2001 From: ivmarkov Date: Tue, 9 May 2023 13:41:18 +0000 Subject: [PATCH] Make Clippy happy --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index a1b3a83a1..88e07dc0f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -6,7 +6,7 @@ feature(impl_trait_projections), allow(incomplete_features) )] -#![allow(clippy::unused-unit)] // enumset +#![allow(clippy::unused_unit)] // enumset #[cfg(all(not(feature = "riscv-ulp-hal"), not(esp_idf_comp_driver_enabled)))] compile_error!("esp-idf-hal requires the `driver` ESP-IDF component to be enabled");