minidom: Use Borrow and Hash from core

These were needlessly imported from std.

skip-changelog: This is no public change whatsoever.
This commit is contained in:
Link Mauve 2026-02-07 16:15:14 +01:00 committed by pep
commit eda94997f0

View file

@ -23,11 +23,11 @@ use alloc::borrow::Cow;
use alloc::string::String;
use alloc::vec::Vec;
use core::borrow::Borrow;
use core::hash::Hash;
use core::slice;
use core::str::FromStr;
use std::borrow::Borrow;
use std::hash::Hash;
use std::io;
use rxml::writer::{Encoder, Item, TrackNamespace};