diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index aff137c..d081e33 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -697,7 +697,7 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1f6597e8bdbca37f1f56e5a80d15857b0932aead21a78d20de49e99e74933046" dependencies = [ - "quick-xml 0.38.4", + "quick-xml", "serde", ] @@ -3827,7 +3827,7 @@ checksum = "740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07" dependencies = [ "base64 0.22.1", "indexmap 2.13.0", - "quick-xml 0.38.4", + "quick-xml", "serde", "time", ] @@ -4046,15 +4046,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", -] - [[package]] name = "quick-xml" version = "0.38.4" @@ -4569,7 +4560,7 @@ dependencies = [ "chrono", "comemo", "log", - "quick-xml 0.36.2", + "quick-xml", "serde", "serde_json", "tauri", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 65a8fa8..3adceca 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -34,4 +34,4 @@ tauri-plugin-deep-link = "2.4.9" # Pure-Rust XML pull-parser (MIT). Used by the Final Draft (.fdx) importer # in `screenplay::fdx_import` — `quick-xml` handles BOM, entity decoding, # and whitespace per the XML 1.0 spec, which we don't want to re-implement. -quick-xml = "0.36" +quick-xml = "0.38"