tokio_xmpp: Replace std stuff with alloc/core stuff
This commit is contained in:
parent
668cc05445
commit
1ce2f894aa
12 changed files with 27 additions and 28 deletions
|
|
@ -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};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue