From 42183ea86027e14286a5f1ea77c53ca2d096d6ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Thu, 25 Jul 2024 09:12:50 +0200 Subject: [PATCH] Restrict jid dependency version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I still wish I didn't have to, but it seems cargo is pulling 0.11 now that it's released, when xmpp still depends on 0.10. Signed-off-by: Maxime “pep” Buquet --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4ab7052..de125e6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ hyper = { version = "1.4", default-features = false, features = [ "http1", "serv hyper-util = { version = "0.1", features = [ "tokio" ] } http-body-util = "0.1" bytes = "1.6" -jid = { version = "*", features = [ "serde" ] } +jid = { version = "0.10", features = [ "serde" ] } log = "0.4" tokio = { version = "1", default-features = false, features = [ "rt", "net", "sync" ] } pretty_env_logger = "0.5"