From d4cc2c596b5d3cd616434e67159ca47a179ad3a5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Apr 2024 11:31:35 +0000 Subject: [PATCH] Bump serde_json from 1.0.114 to 1.0.115 Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.114 to 1.0.115. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.114...v1.0.115) --- 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 bd54e36..411439a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2058,9 +2058,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.114" +version = "1.0.115" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c5f09b1bd632ef549eaa9f60a1f8de742bdbc698e6cee2095fc84dde5f549ae0" +checksum = "12dc5c46daa8e9fdf4f5e71b6cf9a53f2487da0e86e55808e2d35539666497dd" dependencies = [ "itoa", "ryu", diff --git a/Cargo.toml b/Cargo.toml index 6691bf5..29441d9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ rust-version = "1.74.0" [dependencies] redis = { version = "0.25.2", default-features = false, features = ["tokio-comp", "aio", "cluster", "cluster-async"] } serde = { version = "1.0.197", features = ["derive"] } -serde_json = "1.0.114" +serde_json = "1.0.115" thiserror = "1.0.58" warp = { version = "0.3.6", features = ["tls"] } tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread", "signal"] } diff --git a/test_client/Cargo.toml b/test_client/Cargo.toml index db3a2f1..5df5ef5 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.114" +serde_json = "1.0.115" ureq = "2.9.6" flexi_logger = { version = "0.28.0", features = ["colors"] } log = "0.4.21"