From ab65adc0c24851beb7f07b7e3abd429ed1aebad8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Sep 2026 10:49:12 +0000 Subject: [PATCH] Bump quick-xml from 0.41.0 to 0.42.0 Bumps [quick-xml](https://github.com/tafia/quick-xml) from 0.41.0 to 0.42.0. - [Release notes](https://github.com/tafia/quick-xml/releases) - [Changelog](https://github.com/tafia/quick-xml/blob/master/Changelog.md) - [Commits](https://github.com/tafia/quick-xml/compare/v0.41.0...v0.42.0) --- updated-dependencies: - dependency-name: quick-xml dependency-version: 0.42.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 13 +++++++++++-- crates/unmapper-stagefile/Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f1d3517..0e333cf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2412,6 +2412,15 @@ dependencies = [ "memchr", ] +[[package]] +name = "quick-xml" +version = "0.42.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41b1177fdf999d2321d3fb46ff47159d9c1fb9ad66a4879f8c50a0b504615e9b" +dependencies = [ + "memchr", +] + [[package]] name = "quote" version = "1.0.47" @@ -3377,7 +3386,7 @@ name = "unmapper-stagefile" version = "0.1.0" dependencies = [ "glam", - "quick-xml", + "quick-xml 0.42.0", "roxmltree", "thiserror 2.0.20", "unmapper-core", @@ -3664,7 +3673,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "338e30461b3a2b67d70eb30a6d89f8e0c93a833e07d2ae89085cd070c4a00ac0" dependencies = [ "proc-macro2", - "quick-xml", + "quick-xml 0.41.0", "quote", ] diff --git a/crates/unmapper-stagefile/Cargo.toml b/crates/unmapper-stagefile/Cargo.toml index 5b54d3e..57e74d6 100644 --- a/crates/unmapper-stagefile/Cargo.toml +++ b/crates/unmapper-stagefile/Cargo.toml @@ -8,6 +8,6 @@ license.workspace = true [dependencies] unmapper-core = { path = "../unmapper-core" } roxmltree = "0.21" -quick-xml = "0.41" +quick-xml = "0.42" thiserror = { workspace = true } glam = { workspace = true }