From aaffb1f477c5cc84b47251e9540171202a0ae6b0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 20 Feb 2024 02:28:55 +0000 Subject: [PATCH] Bump serde_json from 1.0.113 to 1.0.114 Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.113 to 1.0.114. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.113...v1.0.114) --- 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 acdf3e5b..53a7fd77 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2072,9 +2072,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.113" +version = "1.0.114" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69801b70b1c3dac963ecb03a364ba0ceda9cf60c71cfe475e99864759c8b8a79" +checksum = "c5f09b1bd632ef549eaa9f60a1f8de742bdbc698e6cee2095fc84dde5f549ae0" dependencies = [ "itoa", "ryu", diff --git a/Cargo.toml b/Cargo.toml index 293c0a74..06aa0823 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.113" +serde_json = "1.0.114" 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 4c96783c..192134d8 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.113" +serde_json = "1.0.114" ureq = "2.9.1" flexi_logger = { version = "0.27.2", features = ["colors"] } log = "0.4.20"