From aa806387421e6cd0781ba090826d847487b568d2 Mon Sep 17 00:00:00 2001 From: Abdelilah El Aissaoui Date: Thu, 21 Sep 2023 21:19:47 +0200 Subject: [PATCH] Disabled warning on unused import warning because the import is needed to be mapped to an enum in the UDL file --- rs/src/lib.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/rs/src/lib.rs b/rs/src/lib.rs index 8e2b96f..563c11f 100644 --- a/rs/src/lib.rs +++ b/rs/src/lib.rs @@ -3,9 +3,7 @@ mod watch_directory; use watch_directory::{ * }; use ssh::{ * }; -#[allow(unused_imports)] +#[allow(unused_imports)] // Needed to map it to the enum in the UDL file use libssh_rs::AuthStatus; uniffi::include_scaffolding!("gitnuro"); - -