From f725994fe05f9aa70fa97b1ce628478f7144eeca Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Thu, 25 Apr 2024 21:01:29 +0200 Subject: [PATCH] Bump all dependencies but rustls and webpki-roots The latter have changed their API a bit, while everything else is still compatible. --- parsers/Cargo.toml | 2 +- sasl/Cargo.toml | 2 +- tokio-xmpp/Cargo.toml | 4 ++-- xmpp/Cargo.toml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/parsers/Cargo.toml b/parsers/Cargo.toml index 5196d00..8d6af54 100644 --- a/parsers/Cargo.toml +++ b/parsers/Cargo.toml @@ -14,7 +14,7 @@ license = "MPL-2.0" edition = "2021" [dependencies] -base64 = "0.21" +base64 = "0.22" digest = "0.10" sha1 = "0.10" sha2 = "0.10" diff --git a/sasl/Cargo.toml b/sasl/Cargo.toml index 9847144..0fba25d 100644 --- a/sasl/Cargo.toml +++ b/sasl/Cargo.toml @@ -20,7 +20,7 @@ scram = ["base64", "getrandom", "sha-1", "sha2", "hmac", "pbkdf2"] anonymous = ["getrandom"] [dependencies] -base64 = { version = "0.21", optional = true } +base64 = { version = "0.22", optional = true } getrandom = { version = "0.2", optional = true } sha-1 = { version = "0.10", optional = true } sha2 = { version = "0.10", optional = true } diff --git a/tokio-xmpp/Cargo.toml b/tokio-xmpp/Cargo.toml index b28aa15..b0331dc 100644 --- a/tokio-xmpp/Cargo.toml +++ b/tokio-xmpp/Cargo.toml @@ -29,13 +29,13 @@ xmpp-parsers = { version = "0.20", path = "../parsers" } # these are only needed for starttls ServerConnector support hickory-resolver = { version = "0.24", optional = true} -idna = { version = "0.4", optional = true} +idna = { version = "0.5", optional = true} native-tls = { version = "0.2", optional = true } tokio-native-tls = { version = "0.3", optional = true } tokio-rustls = { version = "0.24", optional = true } [dev-dependencies] -env_logger = { version = "0.10", default-features = false, features = ["auto-color", "humantime"] } +env_logger = { version = "0.11", default-features = false, features = ["auto-color", "humantime"] } # this is needed for echo-component example tokio-xmpp = { path = ".", features = ["insecure-tcp"]} diff --git a/xmpp/Cargo.toml b/xmpp/Cargo.toml index e2dc569..18a45a3 100644 --- a/xmpp/Cargo.toml +++ b/xmpp/Cargo.toml @@ -18,13 +18,13 @@ chrono = "0.4" futures = "0.3" tokio = { version = "1", features = ["fs"] } log = "0.4" -reqwest = { version = "0.11.8", features = ["stream"] } +reqwest = { version = "0.12", features = ["stream"] } tokio-util = { version = "0.7", features = ["codec"] } # same repository dependencies tokio-xmpp = { version = "3.4", path = "../tokio-xmpp", default-features = false } [dev-dependencies] -env_logger = { version = "0.10", default-features = false, features = ["auto-color", "humantime"] } +env_logger = { version = "0.11", default-features = false, features = ["auto-color", "humantime"] } [[example]] name = "hello_bot"