From 8f47c9d2ca74969a5f45333aa6b5635231a680ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Sch=C3=A4fer?= Date: Sun, 27 Apr 2025 13:08:28 +0200 Subject: [PATCH] minidom: fix build without std --- minidom/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minidom/Cargo.toml b/minidom/Cargo.toml index 9191e82633b83365d4a731d5d6f1ec6ec0b3b59c..a205604016263cd59ab6c55f9f7c3ae852f5382a 100644 --- a/minidom/Cargo.toml +++ b/minidom/Cargo.toml @@ -25,4 +25,4 @@ rxml = { version = "0.13.1", default-features = false, features = ["compact_str" [features] default = [ "std" ] -std = [] +std = ["rxml/std"]