xmpp: Replace std stuff with alloc/core stuff
This commit is contained in:
parent
1c1b960265
commit
668cc05445
3 changed files with 5 additions and 3 deletions
|
|
@ -6,9 +6,9 @@
|
|||
|
||||
#[cfg(any(feature = "starttls-rust", feature = "starttls-native"))]
|
||||
use crate::tokio_xmpp::connect::{DnsConfig, StartTlsServerConnector};
|
||||
use alloc::sync::Arc;
|
||||
use core::str::FromStr;
|
||||
use std::collections::HashMap;
|
||||
use std::str::FromStr;
|
||||
use std::sync::Arc;
|
||||
use tokio::sync::RwLock;
|
||||
|
||||
use crate::{
|
||||
|
|
|
|||
Loading…
Reference in a new issue