tokio_xmpp: Replace std stuff with alloc/core stuff

This commit is contained in:
xmppftw xmppftw 2024-12-19 19:34:10 +01:00 • committed by Emmanuel Gil Peyrot
commit 1ce2f894aa
12 changed files with 27 additions and 28 deletions

View file

@ -10,10 +10,10 @@
//! as good as it can, transparently reconnecting on interruptions of the TCP
//! stream.
use core::str::FromStr;
use core::time::Duration;
use std::env::args;
use std::process::exit;
use std::str::FromStr;
use std::time::Duration;
use rand::{thread_rng, Rng};