From b3c57840eed12515c083618ae5a45dd9f1580b25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Wed, 28 May 2025 22:40:17 +0200 Subject: [PATCH] lib: Ignore dead_code warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I'm not fmiliar with this crate, so let's just ignore the warning for now instead of removing the code. Signed-off-by: Fabiano FidĂȘncio --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 48393da..61d1f65 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -231,6 +231,7 @@ mod sealed { }) } + #[allow(dead_code)] fn get(&self, key: &str) -> Result { self.open_path(key, false).and_then(|mut file: File| { let mut string = String::new();