diff --git a/minidom/CHANGELOG.md b/minidom/CHANGELOG.md
index d3ce5e7e..95cc3908 100644
--- a/minidom/CHANGELOG.md
+++ b/minidom/CHANGELOG.md
@@ -1,6 +1,7 @@
Version NEXT:
* Changes
* Almost make the whole crate `no_std`, only `std::io` is still remaining.
+ * Update rxml dependency to 0.13.
Version 0.16, released 2024-07-23:
* Breaking
diff --git a/minidom/Cargo.toml b/minidom/Cargo.toml
index 4fecb4e8..9191e826 100644
--- a/minidom/Cargo.toml
+++ b/minidom/Cargo.toml
@@ -21,7 +21,7 @@ edition = "2021"
gitlab = { repository = "xmpp-rs/xmpp-rs" }
[dependencies]
-rxml = { version = "0.12.0", default-features = false, features = ["compact_str"] }
+rxml = { version = "0.13.1", default-features = false, features = ["compact_str"] }
[features]
default = [ "std" ]
diff --git a/minidom/src/tests.rs b/minidom/src/tests.rs
index 476291cb..6f82a2c5 100644
--- a/minidom/src/tests.rs
+++ b/minidom/src/tests.rs
@@ -16,7 +16,7 @@ use alloc::format;
use alloc::string::String;
use alloc::vec::Vec;
-const TEST_STRING: &'static [u8] = br#"meownya"#;
+const TEST_STRING: &'static [u8] = br#"meownya"#;
fn build_test_tree() -> Element {
let mut root = Element::builder("root", "root_ns")
@@ -251,7 +251,7 @@ fn writer_escapes_attributes() {
}
assert_eq!(
String::from_utf8(writer).unwrap(),
- r#""#
+ r#""#
);
}
diff --git a/parsers/src/data_forms_validate.rs b/parsers/src/data_forms_validate.rs
index 57d8ce21..ddfb5782 100644
--- a/parsers/src/data_forms_validate.rs
+++ b/parsers/src/data_forms_validate.rs
@@ -398,7 +398,7 @@ mod tests {
},
),
(
- r#""#,
+ r#""#,
Validate {
datatype: Some(Datatype::String),
method: Some(Method::Basic),
@@ -409,7 +409,7 @@ mod tests {
},
),
(
- r#"([0-9]{3})-([0-9]{2})-([0-9]{4})"#,
+ r#"([0-9]{3})-([0-9]{2})-([0-9]{4})"#,
Validate {
datatype: Some(Datatype::String),
method: Some(Method::Regex(
@@ -419,7 +419,7 @@ mod tests {
},
),
(
- r#""#,
+ r#""#,
Validate {
datatype: Some(Datatype::DateTime),
method: Some(Method::Range {
diff --git a/tokio-xmpp/Cargo.toml b/tokio-xmpp/Cargo.toml
index e7971ddd..e8d79d67 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 = ["sync"] }
webpki-roots = { version = "0.26", optional = true }
rustls-native-certs = { version = "0.7", optional = true }
-rxml = { version = "0.12.0", features = ["compact_str"] }
+rxml = { version = "0.13.1", features = ["compact_str"] }
rand = "0.8"
syntect = { version = "5", optional = true }
pin-project-lite = { version = "0.2" }
diff --git a/tokio-xmpp/ChangeLog b/tokio-xmpp/ChangeLog
index 5087285b..e8664729 100644
--- a/tokio-xmpp/ChangeLog
+++ b/tokio-xmpp/ChangeLog
@@ -34,6 +34,7 @@ XXXX-YY-ZZ RELEASER
delegate it to a hardware implementations if available. This depends
on the `tls-rust-ktls` feature. (!458, !490)
- Building with insecure-tcp and no other feature got fixed.
+ - Update rxml dependency to 0.13.
Version 4.0.0:
2024-07-26 Maxime “pep” Buquet
diff --git a/xso/Cargo.toml b/xso/Cargo.toml
index a79b3926..c678e72b 100644
--- a/xso/Cargo.toml
+++ b/xso/Cargo.toml
@@ -11,7 +11,7 @@ license = "MPL-2.0"
[dependencies]
bytes = { version = "1" }
-rxml = { version = "0.12.0", default-features = false }
+rxml = { version = "0.13.1", default-features = false }
minidom = { version = "0.16", path = "../minidom" }
xso_proc = { version = "0.1", path = "../xso-proc", optional = true }
diff --git a/xso/ChangeLog b/xso/ChangeLog
index 31cad145..f00527a6 100644
--- a/xso/ChangeLog
+++ b/xso/ChangeLog
@@ -49,6 +49,7 @@ Version NEXT:
- Fixed bug where putting an attribute field below any non-attribute
field in a struct definition would cause a compile-time error when
deriving `AsXml`.
+ - Update rxml dependency to 0.13.
Version 0.1.2:
2024-07-26 Jonas Schäfer