From 512f8fc1a1b60058a760ebf4b0d4514ccc1c10c5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Jul 2025 07:03:23 +0000 Subject: [PATCH] chore(deps): bump serde_with from 3.13.0 to 3.14.0 Bumps [serde_with](https://github.com/jonasbb/serde_with) from 3.13.0 to 3.14.0. - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.13.0...v3.14.0) --- updated-dependencies: - dependency-name: serde_with dependency-version: 3.14.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 23 ++++++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2dc9b30d..013252f8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5909,6 +5909,18 @@ dependencies = [ "serde_json", ] +[[package]] +name = "schemars" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82d20c4491bc164fa2f6c5d44565947a52ad80b9505d8e36f8d54c27c739fcd0" +dependencies = [ + "dyn-clone", + "ref-cast", + "serde", + "serde_json", +] + [[package]] name = "scopeguard" version = "1.2.0" @@ -6105,16 +6117,17 @@ dependencies = [ [[package]] name = "serde_with" -version = "3.13.0" +version = "3.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf65a400f8f66fb7b0552869ad70157166676db75ed8181f8104ea91cf9d0b42" +checksum = "f2c45cd61fefa9db6f254525d46e392b852e0e61d9a1fd36e5bd183450a556d5" dependencies = [ "base64 0.22.1", "chrono", "hex", "indexmap 1.9.3", "indexmap 2.9.0", - "schemars", + "schemars 0.9.0", + "schemars 1.0.4", "serde", "serde_derive", "serde_json", @@ -6124,9 +6137,9 @@ dependencies = [ [[package]] name = "serde_with_macros" -version = "3.13.0" +version = "3.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81679d9ed988d5e9a5e6531dc3f2c28efbd639cbd1dfb628df08edea6004da77" +checksum = "de90945e6565ce0d9a25098082ed4ee4002e047cb59892c318d66821e14bb30f" dependencies = [ "darling", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index cb3d872a..664a0174 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -63,7 +63,7 @@ hashbrown = "0.15.4" actix-web = "4.11.0" actix-cors = "0.7.1" tracing-actix-web = "0.7" -serde_with = { version = "3.13.0", features = ["base64"] } +serde_with = { version = "3.14.0", features = ["base64"] } serde_qs = { version = "0.15.0", features = ["actix4"] } env_logger = "0.11.8" tracing = { version = "0.1.41" }