xso: fix build with minidom and without std
This commit is contained in:
parent
cc3f22d418
commit
6cc0df47d7
2 changed files with 3 additions and 1 deletions
|
|
@ -1,6 +1,7 @@
|
|||
Version NEXT:
|
||||
* Changes
|
||||
- Fix some Clippy warnings
|
||||
- Fix build with minidom and without std (!661)
|
||||
|
||||
Version 0.3.0, release 2025-10-28:
|
||||
* Changes
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@
|
|||
use alloc::{
|
||||
borrow::{Cow, ToOwned},
|
||||
boxed::Box,
|
||||
string::String,
|
||||
vec::IntoIter,
|
||||
};
|
||||
use core::marker::PhantomData;
|
||||
|
|
@ -156,7 +157,7 @@ enum AsXmlState<'a> {
|
|||
element: &'a Element,
|
||||
|
||||
/// Attribute iterator.
|
||||
attributes: rxml::xml_map::Iter<'a, std::string::String>,
|
||||
attributes: rxml::xml_map::Iter<'a, String>,
|
||||
},
|
||||
|
||||
/// Content: The contents of the element are streamed as events.
|
||||
|
|
|
|||
Loading…
Reference in a new issue