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:
parent
4f11d2fe5c
commit
eda94997f0
1 changed files with 2 additions and 2 deletions
|
|
@ -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};
|
||||
|
|
|
|||
Loading…
Reference in a new issue