From 30461d091c6e9642b2ceea0e2a62149c1fe9160f Mon Sep 17 00:00:00 2001 From: Maximiliano Sandoval Date: Wed, 26 Jun 2024 14:43:34 +0200 Subject: [PATCH] acme: remove duplicated attribute Fixes the following clippy warning: warning: duplicated attribute --> proxmox-acme/src/lib.rs:42:7 | 42 | #[cfg(feature = "impl")] | ^^^^^^^^^^^^^^^^ | note: first defined here --> proxmox-acme/src/lib.rs:41:7 | 41 | #[cfg(feature = "impl")] | ^^^^^^^^^^^^^^^^ help: remove this attribute --> proxmox-acme/src/lib.rs:42:7 | 42 | #[cfg(feature = "impl")] | ^^^^^^^^^^^^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#duplicated_attributes = note: `#[warn(clippy::duplicated_attributes)]` on by default Signed-off-by: Maximiliano Sandoval --- proxmox-acme/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/proxmox-acme/src/lib.rs b/proxmox-acme/src/lib.rs index b0374ecd..692691bf 100644 --- a/proxmox-acme/src/lib.rs +++ b/proxmox-acme/src/lib.rs @@ -39,7 +39,6 @@ pub mod directory; #[cfg(feature = "impl")] pub mod error; #[cfg(feature = "impl")] -#[cfg(feature = "impl")] pub mod order; #[cfg(feature = "impl")]