Skip to content

Commit 9da2916

Browse files
committed
build(deps): update dependencies
1 parent b84c768 commit 9da2916

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ keywords = ["geo", "geospatial", "kml"]
1313
exclude = [".github/*"]
1414

1515
[dependencies]
16-
quick-xml = "0.31"
16+
quick-xml = "0.37.1"
1717
num-traits = "0.2"
1818
thiserror = "1.0"
1919
geo-types = { version = ">=0.6, <0.8", optional = true }
20-
zip = { version = "0.6", optional = true, default-features = false, features = [
20+
zip = { version = "2.2", optional = true, default-features = false, features = [
2121
"bzip2",
2222
"deflate",
2323
"time",

src/reader.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ where
8585
}
8686

8787
fn from_xml_reader(mut reader: quick_xml::Reader<B>) -> KmlReader<B, T> {
88-
reader.trim_text(true);
89-
reader.expand_empty_elements(true);
88+
let config = reader.config_mut();
89+
config.trim_text(true);
9090
KmlReader {
9191
reader,
9292
buf: Vec::new(),

0 commit comments

Comments
 (0)