kata-ctl: bump quick-xml 0.28.2 → 0.41.0

Fixes RUSTSEC-2026-0194 and RUSTSEC-2026-0195 reported against
quick-xml < 0.37.2.  The quick-xml se::to_string API used by kata-ctl's
log-parser is unchanged between 0.28 and 0.41, so no call-site edits
are needed.

Ref: https://osv.dev/RUSTSEC-2026-0194
Ref: https://osv.dev/RUSTSEC-2026-0195

Generated-by: IBM Bob
Signed-off-by: stevenhorsman <steven@uk.ibm.com>
This commit is contained in:
stevenhorsman
2026-07-10 09:44:17 -07:00
parent 0c1728ad1e
commit 297f74795d
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@@ -6038,9 +6038,9 @@ dependencies = [
[[package]]
name = "quick-xml"
version = "0.28.2"
version = "0.41.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ce5e73202a820a31f8a0ee32ada5e21029c81fd9e3ebf668a40832e4219d9d1"
checksum = "e660451e55124f798a69a5af3f49ccfbefbd41910eefd25caf2393e1f3473ec1"
dependencies = [
"memchr",
"serde",

View File

@@ -54,7 +54,7 @@ lazy_static.workspace = true
# for log-parser
serde_yaml = "0.9"
ron = "0.8"
quick-xml = { version = "0.28", features = ["serialize"] }
quick-xml = { version = "0.41.0", features = ["serialize"] }
csv = "1.2"
serde_with = "2.3"
chrono = { version = "0.4", features = ["serde"] }