Skip to content

Commit f83fcbd

Browse files
danieleadespatrickelectric
authored andcommitted
chore(deps): update 'quickxml'
1 parent e345857 commit f83fcbd

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

mavlink-bindgen/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repository = "https://github.com/mavlink/rust-mavlink"
1111

1212
[dependencies]
1313
crc-any = { workspace = true, default-features = false }
14-
quick-xml = "0.26"
14+
quick-xml = "0.36"
1515
quote = "1"
1616
proc-macro2 = "1.0.43"
1717
lazy_static = "1.2.0"

mavlink-bindgen/src/parser.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1069,8 +1069,7 @@ pub fn parse_profile(
10691069
path: in_path.to_path_buf(),
10701070
})?;
10711071
let mut reader = Reader::from_reader(BufReader::new(file));
1072-
reader.trim_text(true);
1073-
reader.trim_text_end(true);
1072+
reader.config_mut().trim_text(true);
10741073

10751074
let mut buf = Vec::new();
10761075
loop {

0 commit comments

Comments
 (0)