From 2097b9685f31ad59384db1ee2d21e2da899c1444 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Sch=C3=A4fer?= Date: Sat, 8 Jun 2024 07:29:08 +0200 Subject: [PATCH] Update rxml to 0.10.1 rxml 0.10.0 (and earlier) had a bug which caused it to reject valid XML documents if an UTF-8 sequence straddled the token size boundary (8192 bytes by default) of a text event. --- minidom/Cargo.toml | 2 +- tokio-xmpp/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/minidom/Cargo.toml b/minidom/Cargo.toml index b644a59..97081fa 100644 --- a/minidom/Cargo.toml +++ b/minidom/Cargo.toml @@ -21,4 +21,4 @@ edition = "2021" gitlab = { repository = "xmpp-rs/xmpp-rs" } [dependencies] -rxml = { version = "0.10.0", default-features = false, features = ["sync", "smartstring"] } +rxml = { version = "0.10.1", default-features = false, features = ["sync", "smartstring"] } diff --git a/tokio-xmpp/Cargo.toml b/tokio-xmpp/Cargo.toml index 265db6a..64063b4 100644 --- a/tokio-xmpp/Cargo.toml +++ b/tokio-xmpp/Cargo.toml @@ -19,7 +19,7 @@ tokio = { version = "1", features = ["net", "rt", "rt-multi-thread", "macros"] } tokio-stream = { version = "0.1", features = [] } tokio-util = { version = "0.7", features = ["codec"] } webpki-roots = { version = "0.25", optional = true } -rxml = { version = "0.10.0", features = ["smartstring"] } +rxml = { version = "0.10.1", features = ["smartstring"] } rand = "^0.8" syntect = { version = "5", optional = true } # same repository dependencies