We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1909dfa commit 7429faeCopy full SHA for 7429fae
parser/Cargo.toml
@@ -7,6 +7,6 @@ license = "MIT"
7
github = "https://github.com/GodGotzi/egui_xml/tree/main/parser"
8
9
[dependencies]
10
-quick-xml = "0.31.0"
+quick-xml = "0.37.1"
11
proc-macro2 = "1.0"
12
quote = "1.0"
parser/src/core.rs
@@ -187,7 +187,6 @@ impl TryFrom<String> for XMLForm {
187
188
fn try_from(xml: String) -> Result<Self, Self::Error> {
189
let mut reader = Reader::from_str(&xml);
190
- reader.trim_text(true);
191
192
let mut buf = Vec::new();
193
0 commit comments