From 48f67d034e8841dc462e38b5f6d526d42ed2ac55 Mon Sep 17 00:00:00 2001 From: pep Date: Tue, 21 Oct 2025 23:11:07 +0200 Subject: [PATCH] minidom: Remove 'std' feature The parser being used from rxml, `rxml::RawParser`, requires std, so it doesn't make sense. Signed-off-by: pep --- minidom/CHANGELOG.md | 3 +++ minidom/Cargo.toml | 6 +----- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/minidom/CHANGELOG.md b/minidom/CHANGELOG.md index 47138788c09764e23989f8ae139b8919e41620d9..381f049473a53a82be84505c147c3e1756164605 100644 --- a/minidom/CHANGELOG.md +++ b/minidom/CHANGELOG.md @@ -1,4 +1,7 @@ Version NEXT: + * Breaking: + * Removed 'std' feature for now because it makes build fail on + no-default-features. * Changes * Use thiserror for the error type. (!616) diff --git a/minidom/Cargo.toml b/minidom/Cargo.toml index b42f5d12644df51c4fc258a5c9d209a0b380dbd6..9879d9d22fcf1d38918aedd5c79f43a5ef78e931 100644 --- a/minidom/Cargo.toml +++ b/minidom/Cargo.toml @@ -21,9 +21,5 @@ edition = "2021" gitlab = { repository = "xmpp-rs/xmpp-rs" } [dependencies] -rxml = { version = "0.13.1", default-features = false, features = ["compact_str"] } +rxml = { version = "0.13.1", default-features = false, features = [ "std", "compact_str" ] } thiserror = "2.0" - -[features] -default = [ "std" ] -std = ["rxml/std"]