From eda94997f00af8e7c8046faf364dab25bc1faf83 Mon Sep 17 00:00:00 2001 From: Link Mauve Date: Sat, 7 Feb 2026 16:15:14 +0100 Subject: [PATCH] minidom: Use Borrow and Hash from core These were needlessly imported from std. skip-changelog: This is no public change whatsoever. --- minidom/src/element.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/minidom/src/element.rs b/minidom/src/element.rs index 05267598..130d6b24 100644 --- a/minidom/src/element.rs +++ b/minidom/src/element.rs @@ -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};