parsers: Replace std stuff with alloc/core stuff

This commit is contained in:
xmppftw xmppftw 2024-12-19 19:37:37 +01:00 committed by Emmanuel Gil Peyrot
commit 087534be1e
23 changed files with 201 additions and 200 deletions

View file

@ -7,7 +7,7 @@
use xso::{AsXml, FromXml};
use crate::ns;
use std::num::NonZeroU32;
use core::num::NonZeroU32;
/// Advertises limits on this stream.
#[derive(FromXml, AsXml, Debug, Clone, PartialEq)]