From d10a7224e132ec3d1e0f1155eb81a7d83b47ad4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 24 Oct 2024 10:09:18 +0300 Subject: [PATCH] Update to quick-xml 0.36 Part-of: --- Cargo.lock | 16 +++------------- mux/fmp4/Cargo.toml | 2 +- net/ndi/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 628540186..138a11be6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1444,7 +1444,7 @@ dependencies = [ "iso8601", "lazy_static", "num-traits", - "quick-xml 0.36.2", + "quick-xml", "regex", "serde", "serde_path_to_error", @@ -2428,7 +2428,7 @@ dependencies = [ "gstreamer-video", "m3u8-rs", "once_cell", - "quick-xml 0.31.0", + "quick-xml", "serde", ] @@ -2619,7 +2619,7 @@ dependencies = [ "gstreamer-video", "libloading", "once_cell", - "quick-xml 0.31.0", + "quick-xml", "smallvec", "thiserror", ] @@ -5317,16 +5317,6 @@ dependencies = [ "psl-types", ] -[[package]] -name = "quick-xml" -version = "0.31.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" -dependencies = [ - "memchr", - "serde", -] - [[package]] name = "quick-xml" version = "0.36.2" diff --git a/mux/fmp4/Cargo.toml b/mux/fmp4/Cargo.toml index 7276cbba8..a71d3864a 100644 --- a/mux/fmp4/Cargo.toml +++ b/mux/fmp4/Cargo.toml @@ -30,7 +30,7 @@ gst-pbutils = { workspace = true, features = ["v1_20"] } m3u8-rs = "5.0" chrono = "0.4.35" dash-mpd = { version = "0.17", default-features = false } -quick-xml = { version = "0.31", features = ["serialize"] } +quick-xml = { version = "0.36", features = ["serialize"] } serde = "1" [build-dependencies] diff --git a/net/ndi/Cargo.toml b/net/ndi/Cargo.toml index c990a9922..15ef09c09 100644 --- a/net/ndi/Cargo.toml +++ b/net/ndi/Cargo.toml @@ -20,7 +20,7 @@ byteorder = "1.0" data-encoding = "2.4.0" atomic_refcell = "0.1" libloading = "0.8" -quick-xml = "0.31" +quick-xml = "0.36" smallvec = { version = "1.11", features = ["const_generics"] } thiserror = "1.0" once_cell.workspace = true