From eeb57f83a2f8f5d8d6421c3cd6552444f6b29a93 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 11 Aug 2024 21:44:05 +0000 Subject: [PATCH] Update Rust crate serde_json to v1.0.124 --- src/Cargo.lock | 13 ++----------- src/qos_host/Cargo.toml | 2 +- src/qos_net/Cargo.toml | 3 --- 3 files changed, 3 insertions(+), 15 deletions(-) diff --git a/src/Cargo.lock b/src/Cargo.lock index ab5ef970..6ff2c410 100644 --- a/src/Cargo.lock +++ b/src/Cargo.lock @@ -406,12 +406,6 @@ dependencies = [ "windows-targets 0.52.5", ] -[[package]] -name = "chunked_transfer" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e4de3bc4ea267985becf712dc6d9eed8b04c953b3fcfb339ebc87acd9804901" - [[package]] name = "cipher" version = "0.4.4" @@ -1802,15 +1796,12 @@ name = "qos_net" version = "0.1.0" dependencies = [ "borsh", - "chunked_transfer", "hickory-resolver", - "httparse", "qos_core", "qos_test_primitives", "rand", "rustls", "serde", - "serde_json", "webpki-roots", ] @@ -2148,9 +2139,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.121" +version = "1.0.124" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ab380d7d9f22ef3f21ad3e6c1ebe8e4fc7a2000ccba2e4d71fc96f15b2cb609" +checksum = "66ad62847a56b3dba58cc891acd13884b9c61138d330c0d7b6181713d4fce38d" dependencies = [ "itoa", "memchr", diff --git a/src/qos_host/Cargo.toml b/src/qos_host/Cargo.toml index 17bd6053..d727fc0c 100644 --- a/src/qos_host/Cargo.toml +++ b/src/qos_host/Cargo.toml @@ -10,7 +10,7 @@ qos_hex = { path = "../qos_hex", features = ["serde"], default-features = false # Third party axum = { version = "0.6.20", features = ["http1", "tokio", "json"], default-features = false } -tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread"], default-features = false } +tokio = { version = "1.33", features = ["macros", "rt-multi-thread"], default-features = false } borsh = { version = "1.0", features = ["std", "derive"] , default-features = false} serde_json = { version = "1" } serde = { version = "1", features = ["derive"], default-features = false } diff --git a/src/qos_net/Cargo.toml b/src/qos_net/Cargo.toml index e4899c4a..ec09b49d 100644 --- a/src/qos_net/Cargo.toml +++ b/src/qos_net/Cargo.toml @@ -14,9 +14,6 @@ rand = { version = "0.8.5", default-features = false, optional = true } [dev-dependencies] qos_test_primitives = { path = "../qos_test_primitives" } -httparse = { version = "1.9.4", default-features = false } -chunked_transfer = { version = "1.5.0", default-features = false } -serde_json = { version = "1.0.121", features = ["std"], default-features = false } rustls = { version = "0.23.5" } webpki-roots = { version = "0.26.1" }