Bump all dependencies but rustls and webpki-roots

Emmanuel Gil Peyrot created

The latter have changed their API a bit, while everything else is still
compatible.

Change summary

parsers/Cargo.toml    | 2 +-
sasl/Cargo.toml       | 2 +-
tokio-xmpp/Cargo.toml | 4 ++--
xmpp/Cargo.toml       | 4 ++--
4 files changed, 6 insertions(+), 6 deletions(-)

Detailed changes

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"

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 }

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"]}
 

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"