From 62fb3c6023b9121922de32f017200354f9c6244c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Wed, 1 Feb 2023 18:01:29 +0100 Subject: [PATCH] Remove unused import MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index e9650ad..33d5e3c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -7,7 +7,7 @@ use env_logger; use std::env::args; use std::path::Path; -use xmpp::{ClientBuilder, ClientFeature, ClientType, Event}; +use xmpp::{ClientBuilder, ClientType, Event}; #[tokio::main] async fn main() -> Result<(), Option<()>> {