From 827c0a853d59db545c5bacf6abac73c7bb21738e Mon Sep 17 00:00:00 2001 From: John Schmidt Date: Wed, 5 Jun 2024 13:56:22 -0400 Subject: [PATCH 1/2] Update minidom and regex --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 16647ff..ed27ac2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,8 +11,8 @@ license = "MIT" serde = "1.0" serde_json = "1.0" serde_derive = "1.0" -minidom = "0.12" -regex = "1.8.3" +minidom = "0.15" +regex = "1.10.4" [features] json_types = [] # Enable to enforce fixed JSON data types for certain XML nodes From 787ed4c4a7729ecf5699f4ebf3033e9efedef463 Mon Sep 17 00:00:00 2001 From: John Schmidt Date: Wed, 5 Jun 2024 14:01:06 -0400 Subject: [PATCH 2/2] bump cargo version --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ed27ac2..b799c94 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quickxml_to_serde" -version = "0.6.0" +version = "0.6.1" authors = ["Alec Troemel ", "Max Voskob "] description = "Convert between XML JSON using quickxml and serde" repository = "https://github.com/AlecTroemel/quickxml_to_serde"