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

@ -4,7 +4,6 @@
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
use rand::{thread_rng, Rng};
use xmpp_parsers::{
iq::Iq,
jid::Jid,
@ -17,7 +16,7 @@ use crate::xmlstream::XmppStreamElement;
use crate::Error;
pub(crate) fn make_id() -> String {
let id: u64 = thread_rng().gen();
let id: u64 = rand::random();
format!("{}", id)
}

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