Skip to content

Commit

Permalink
build(deps): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
pjsier committed Dec 22, 2024
1 parent b84c768 commit 9da2916
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ keywords = ["geo", "geospatial", "kml"]
exclude = [".github/*"]

[dependencies]
quick-xml = "0.31"
quick-xml = "0.37.1"
num-traits = "0.2"
thiserror = "1.0"
geo-types = { version = ">=0.6, <0.8", optional = true }
zip = { version = "0.6", optional = true, default-features = false, features = [
zip = { version = "2.2", optional = true, default-features = false, features = [
"bzip2",
"deflate",
"time",
Expand Down
4 changes: 2 additions & 2 deletions src/reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ where
}

fn from_xml_reader(mut reader: quick_xml::Reader<B>) -> KmlReader<B, T> {
reader.trim_text(true);
reader.expand_empty_elements(true);
let config = reader.config_mut();
config.trim_text(true);
KmlReader {
reader,
buf: Vec::new(),
Expand Down

0 comments on commit 9da2916

Please sign in to comment.