From 00d5fac6ccffb51c49ddf2b2885b358b0092ced9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Aug 2023 02:17:30 +0000 Subject: [PATCH] Bump serde_json from 1.0.104 to 1.0.105 Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.104 to 1.0.105. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.104...v1.0.105) --- 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 acba4881..2d12f491 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1953,9 +1953,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.104" +version = "1.0.105" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "076066c5f1078eac5b722a31827a8832fe108bed65dfa75e233c89f8206e976c" +checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360" dependencies = [ "itoa", "ryu", diff --git a/Cargo.toml b/Cargo.toml index c08a89b5..137b03e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ rust-version = "1.64.0" [dependencies] redis = { version = "0.23.1", default-features = false, features = ["tokio-comp", "aio", "cluster", "cluster-async"] } serde = { version = "1.0.183", features = ["derive"] } -serde_json = "1.0.104" +serde_json = "1.0.105" thiserror = "1.0.44" warp = { version = "0.3.5", features = ["tls"] } tokio = { version = "1.29.1", features = ["macros", "rt-multi-thread", "signal"] } diff --git a/test_client/Cargo.toml b/test_client/Cargo.toml index e3c085f8..5d8dd8b2 100644 --- a/test_client/Cargo.toml +++ b/test_client/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] tungstenite = { version = "0.20.0", features = ["rustls-tls-webpki-roots"] } -serde_json = "1.0.104" +serde_json = "1.0.105" ureq = "2.7.1" flexi_logger = { version = "0.25.6", features = ["colors"] } log = "0.4.19"