tokio-xmpp: Bump rand to 0.9

This commit is contained in:
Link Mauve 2025-07-28 14:37:07 +02:00
commit c11075d1d4
4 changed files with 4 additions and 9 deletions

View file

@ -10,8 +10,6 @@ use core::task::{Context, Poll};
use core::time::Duration;
use std::io;
use rand::{thread_rng, Rng};
use futures::{ready, SinkExt, StreamExt};
use tokio::{
@ -472,7 +470,7 @@ impl StanzaStreamWorker {
// from RFC 6120.
// NOTE: we use a random starting value here to avoid clashes with
// other application code.
let mut ping_probe_ctr: u64 = thread_rng().gen();
let mut ping_probe_ctr: u64 = rand::random();
// We use mpsc::Sender permits (check the docs on
// [`tokio::sync::mpsc::Sender::reserve`]) as a way to avoid blocking