Skip to content

Commit

Permalink
chore(deps): update 'quickxml'
Browse files Browse the repository at this point in the history
  • Loading branch information
danieleades authored and patrickelectric committed Aug 26, 2024
1 parent e345857 commit f83fcbd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mavlink-bindgen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository = "https://github.com/mavlink/rust-mavlink"

[dependencies]
crc-any = { workspace = true, default-features = false }
quick-xml = "0.26"
quick-xml = "0.36"
quote = "1"
proc-macro2 = "1.0.43"
lazy_static = "1.2.0"
Expand Down
3 changes: 1 addition & 2 deletions mavlink-bindgen/src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1069,8 +1069,7 @@ pub fn parse_profile(
path: in_path.to_path_buf(),
})?;
let mut reader = Reader::from_reader(BufReader::new(file));
reader.trim_text(true);
reader.trim_text_end(true);
reader.config_mut().trim_text(true);

let mut buf = Vec::new();
loop {
Expand Down

0 comments on commit f83fcbd

Please sign in to comment.