Update dependencies

Update xmpp-rs to 559159d4, hmac to 0.13 and sasl to 0.11

Signed-off-by: pep <pep@bouah.net>
This commit is contained in:
pep 2026-05-26 11:45:31 +02:00
commit 43106fc657
No known key found for this signature in database
GPG key ID: DEDA74AEECA9D0F2
2 changed files with 5 additions and 5 deletions

View file

@ -19,10 +19,10 @@ tokio = { version = "1", default-features = false, features = [ "rt", "net", "sy
pretty_env_logger = "0.5" pretty_env_logger = "0.5"
serde = { version = "1.0", features = [ "derive" ] } serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0" serde_json = "1.0"
toml = "0.9" toml = "1.1"
xmpp = { git = "https://gitlab.com/xmpp-rs/xmpp-rs", rev = "22292c86c", default-features = false, features = [ "serde", "starttls", "rustls-native-certs", "aws_lc_rs" ] } xmpp = { git = "https://code.bouah.net/pep/xmpp-rs", rev = "559159d4", default-features = false, features = [ "serde", "starttls", "rustls-native-certs", "aws_lc_rs" ] }
hmac = "0.12" hmac = "0.13"
sha2 = "0.10" sha2 = "0.11"
hex = "0.4" hex = "0.4"
camino = { version = "1.2", features = ["serde1"] } camino = { version = "1.2", features = ["serde1"] }
chrono = { version = "0.4", default-features = false } chrono = { version = "0.4", default-features = false }

View file

@ -22,7 +22,7 @@ use std::convert::Infallible;
use std::io::Read; use std::io::Read;
use bytes::{Buf, Bytes}; use bytes::{Buf, Bytes};
use hmac::{Hmac, Mac}; use hmac::{Hmac, KeyInit, Mac};
use http_body_util::{BodyExt, Full}; use http_body_util::{BodyExt, Full};
use hyper::{Method, Request, Response, body::Incoming, header}; use hyper::{Method, Request, Response, body::Incoming, header};
use log::{debug, error, trace}; use log::{debug, error, trace};