diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 5c434b5..a0f3b09 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -3704,7 +3704,7 @@ checksum = "092791278e026273c1b65bbdcfbba3a300f2994c896bd01ab01da613c29c46f1" dependencies = [ "base64 0.22.1", "indexmap 2.14.0", - "quick-xml 0.39.4", + "quick-xml", "serde", "time", ] @@ -3872,16 +3872,6 @@ version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" -[[package]] -name = "quick-xml" -version = "0.36.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7649a7b4df05aed9ea7ec6f628c67c9953a43869b8bc50929569b2999d443fe" -dependencies = [ - "memchr", - "serde", -] - [[package]] name = "quick-xml" version = "0.39.4" @@ -3889,6 +3879,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cdcc8dd4e2f670d309a5f0e83fe36dfdc05af317008fea29144da1a2ac858e5e" dependencies = [ "memchr", + "serde", ] [[package]] @@ -6718,7 +6709,7 @@ dependencies = [ "mac_address", "md-5 0.11.0", "notify", - "quick-xml 0.36.2", + "quick-xml", "realfft", "regex", "reqwest 0.12.28", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 86f7c24..f04d4a7 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -167,7 +167,7 @@ tower-http = { version = "0.6", features = ["fs"] } # pipe a fs::File limited to a Range window into axum::body::Body # without buffering the whole window in memory. tokio-util = { version = "0.7", features = ["io"] } -quick-xml = { version = "0.36", features = ["serialize"] } +quick-xml = { version = "0.39", features = ["serialize"] } socket2 = "0.6" if-addrs = "0.13" mac_address = "1"