From c8d7602bd4979ded8dffe8aa58121bf9c0457ff6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Tue, 28 Dec 2021 21:53:54 +0100 Subject: [PATCH] xmpp: only specify "fs" dep for tokio MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- xmpp/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmpp/Cargo.toml b/xmpp/Cargo.toml index ce5145e9..eb409c31 100644 --- a/xmpp/Cargo.toml +++ b/xmpp/Cargo.toml @@ -17,7 +17,7 @@ edition = "2018" tokio-xmpp = "3.0.0" xmpp-parsers = "0.19" futures = "0.3" -tokio = { version = "1", features = ["full"] } +tokio = { version = "1", features = ["fs"] } log = "0.4" reqwest = { version = "0.11.8", features = ["stream"] } tokio-util = { version = "0.6.9", features = ["codec"] }