From 76e01a499f32527dc85eb2f1b8adcffad10b9117 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 4 Sep 2024 22:26:34 +0000 Subject: [PATCH] Update Rust crate serde_json to v1.0.128 --- src/Cargo.lock | 9 --------- src/qos_host/Cargo.toml | 2 +- src/qos_net/Cargo.toml | 3 --- 3 files changed, 1 insertion(+), 13 deletions(-) diff --git a/src/Cargo.lock b/src/Cargo.lock index ab5ef970..ca275134 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", ] 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" }