We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e345857 commit f83fcbdCopy full SHA for f83fcbd
mavlink-bindgen/Cargo.toml
@@ -11,7 +11,7 @@ repository = "https://github.com/mavlink/rust-mavlink"
11
12
[dependencies]
13
crc-any = { workspace = true, default-features = false }
14
-quick-xml = "0.26"
+quick-xml = "0.36"
15
quote = "1"
16
proc-macro2 = "1.0.43"
17
lazy_static = "1.2.0"
mavlink-bindgen/src/parser.rs
@@ -1069,8 +1069,7 @@ pub fn parse_profile(
1069
path: in_path.to_path_buf(),
1070
})?;
1071
let mut reader = Reader::from_reader(BufReader::new(file));
1072
- reader.trim_text(true);
1073
- reader.trim_text_end(true);
+ reader.config_mut().trim_text(true);
1074
1075
let mut buf = Vec::new();
1076
loop {
0 commit comments