From 15e14166da3d583a9a758febf28ca50cb663919c Mon Sep 17 00:00:00 2001 From: Elias Rohrer Date: Sat, 16 Dec 2023 18:59:49 +0100 Subject: [PATCH] Allow unused imports in `lightning-invoice` prelude --- lightning-invoice/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/lightning-invoice/src/lib.rs b/lightning-invoice/src/lib.rs index 6f21af72d..df0412bfc 100644 --- a/lightning-invoice/src/lib.rs +++ b/lightning-invoice/src/lib.rs @@ -77,6 +77,7 @@ mod de; mod ser; mod tb; +#[allow(unused_imports)] mod prelude { #[cfg(feature = "hashbrown")] extern crate hashbrown; -- 2.39.5