Skip to content

Commit 99edde3

Browse files
update: bump quick-xml from 0.37.5 to 0.38.3 (#1575)
* update: bump quick-xml from 0.37.5 to 0.38.3 Bumps [quick-xml](https://github.com/tafia/quick-xml) from 0.37.5 to 0.38.3. - [Release notes](https://github.com/tafia/quick-xml/releases) - [Changelog](https://github.com/tafia/quick-xml/blob/master/Changelog.md) - [Commits](tafia/quick-xml@v0.37.5...v0.38.3) --- updated-dependencies: - dependency-name: quick-xml dependency-version: 0.38.3 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * fix: quick-xml changed unescape->decode in latest update --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: ok-nick <[email protected]>
1 parent 4e82245 commit 99edde3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ pem = "3.0.6"
157157
pkcs1 = { version = "0.7.5", optional = true }
158158
pkcs8 = "0.10.2"
159159
png_pong = "0.9.1"
160-
quick-xml = "0.37.1"
160+
quick-xml = "0.38.3"
161161
rand = "0.8.5"
162162
rand_chacha = "0.3.1"
163163
range-set = "0.0.11"

sdk/src/asset_handlers/svg_io.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ fn detect_manifest_location(
247247
&& xml_path[2] == MANIFEST
248248
{
249249
let encoded_content = e
250-
.unescape()
250+
.decode()
251251
.map_err(|_e| {
252252
Error::InvalidAsset("XML incorrectly escaped character".to_string())
253253
})?

0 commit comments

Comments
 (0)