From b32b0dfab1d0931206d5c45bb43af188cd95dada Mon Sep 17 00:00:00 2001 From: Jonas Bushart Date: Sun, 7 Apr 2024 15:43:52 +0200 Subject: [PATCH] Remove version lock on xml-rs --- Cargo.lock | 5 ++--- serde_with/Cargo.toml | 5 ----- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cce4a2bb..d08693d6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -878,7 +878,6 @@ dependencies = [ "serde_yaml", "time", "version-sync", - "xml-rs", ] [[package]] @@ -1283,9 +1282,9 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" [[package]] name = "xml-rs" -version = "0.8.14" +version = "0.8.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52839dc911083a8ef63efa4d039d1f58b5e409f923e44c80828f206f66e5541c" +checksum = "791978798f0597cfc70478424c2b4fdc2b7a8024aaff78497ef00f24ef674193" [[package]] name = "yansi" diff --git a/serde_with/Cargo.toml b/serde_with/Cargo.toml index eec5c8bf..5fda2443 100644 --- a/serde_with/Cargo.toml +++ b/serde_with/Cargo.toml @@ -155,11 +155,6 @@ serde_yaml = "0.9.2" serde-xml-rs = "0.6.0" version-sync = "0.9.1" -# There is a change that breaks some tests, starting with 0.8.9. -# Newer xml-rs versions are not compatible with the current MSRV. -# https://github.com/netvl/xml-rs/issues/223 -xml-rs = "=0.8.14" - [[test]] name = "base64" path = "tests/base64.rs"