From d4b961c33adaecc32365c4fa377b8d9def230862 Mon Sep 17 00:00:00 2001 From: Conrado Gouvea Date: Tue, 30 Jan 2024 16:49:28 -0300 Subject: [PATCH] remove warnings --- participant/src/cli.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/participant/src/cli.rs b/participant/src/cli.rs index 02f2fcff..3e1cac25 100644 --- a/participant/src/cli.rs +++ b/participant/src/cli.rs @@ -1,6 +1,7 @@ use crate::args::Args; -use crate::comms::cli::CLIComms; +#[cfg(not(feature = "sockets"))] +use crate::comms::cli::CLIComms; #[cfg(feature = "sockets")] use crate::comms::socket::SocketComms;