From 05d90de742053c8cd31979bdab1f695cba0506f8 Mon Sep 17 00:00:00 2001 From: null Date: Tue, 12 Mar 2024 23:16:36 +0000 Subject: [PATCH] fix(deps): update rust crate serde_with to >= 3.7.0, < 4 Signed-off-by: null --- Cargo.lock | 8 ++++---- lib/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6d688dd96..4efec68d8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1757,9 +1757,9 @@ dependencies = [ [[package]] name = "serde_with" -version = "3.6.1" +version = "3.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15d167997bd841ec232f5b2b8e0e26606df2e7caa4c31b95ea9ca52b200bd270" +checksum = "ee80b0e361bbf88fd2f6e242ccd19cfda072cb0faa6ae694ecee08199938569a" dependencies = [ "base64 0.21.7", "chrono", @@ -1775,9 +1775,9 @@ dependencies = [ [[package]] name = "serde_with_macros" -version = "3.6.1" +version = "3.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "865f9743393e638991566a8b7a479043c2c8da94a33e0a31f18214c9cae0a64d" +checksum = "6561dc161a9224638a31d876ccdfefbc1df91d3f3a8342eddb35f055d48c7655" dependencies = [ "darling 0.20.5", "proc-macro2", diff --git a/lib/Cargo.toml b/lib/Cargo.toml index ecd7bc3e1..e83afe9c4 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -38,7 +38,7 @@ serde = { features = ["derive"], version = "1.0.197" } serde_ignored = "0.1.10" serde_json = "1.0.114" serde_yaml = "0.9.32" -serde_with = ">= 3.6.1, < 4" +serde_with = ">= 3.7.0, < 4" tokio = { features = ["io-std", "time", "process", "rt", "net"], version = ">= 1.36.0" } tokio-util = { features = ["io-util"], version = "0.7" } tracing = "0.1"