From 93941033831facdb00342d566010e8f15a408bce Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 6 Feb 2024 16:50:06 +0000 Subject: [PATCH] Bump serde_json from 1.0.111 to 1.0.113 Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.111 to 1.0.113. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.111...v1.0.113) --- updated-dependencies: - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- test_client/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d515de99..0e084f80 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2072,9 +2072,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.111" +version = "1.0.113" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4" +checksum = "69801b70b1c3dac963ecb03a364ba0ceda9cf60c71cfe475e99864759c8b8a79" dependencies = [ "itoa", "ryu", diff --git a/Cargo.toml b/Cargo.toml index 517f69fa..716b7e19 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ rust-version = "1.70.0" [dependencies] redis = { version = "0.24.0", default-features = false, features = ["tokio-comp", "aio", "cluster", "cluster-async"] } serde = { version = "1.0.196", features = ["derive"] } -serde_json = "1.0.108" +serde_json = "1.0.113" thiserror = "1.0.50" warp = { version = "0.3.6", features = ["tls"] } tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread", "signal"] } diff --git a/test_client/Cargo.toml b/test_client/Cargo.toml index 55fe64c7..4c96783c 100644 --- a/test_client/Cargo.toml +++ b/test_client/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] tungstenite = { version = "0.21.0", features = ["rustls-tls-webpki-roots"] } -serde_json = "1.0.108" +serde_json = "1.0.113" ureq = "2.9.1" flexi_logger = { version = "0.27.2", features = ["colors"] } log = "0.4.20"