From 126ecee451cbe36413ead0093e4599e02e2dfa02 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 10 Jun 2024 14:04:19 +0000 Subject: [PATCH] fix(deps): update rust crate console-subscriber to 0.3.0 --- Cargo.lock | 44 +++++++++----------------------------------- dtrd/Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 36 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1e685d6..b32d5b7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -436,22 +436,22 @@ checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" [[package]] name = "console-api" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd326812b3fd01da5bb1af7d340d0d555fd3d4b641e7f1dfcf5962a902952787" +checksum = "a257c22cd7e487dd4a13d413beabc512c5052f0bc048db0da6a84c3d8a6142fd" dependencies = [ "futures-core", "prost", "prost-types", - "tonic 0.10.2", + "tonic", "tracing-core", ] [[package]] name = "console-subscriber" -version = "0.2.0" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7481d4c57092cd1c19dd541b92bdce883de840df30aa5d03fd48a3935c01842e" +checksum = "31c4cc54bae66f7d9188996404abdf7fdfa23034ef8e43478c8810828abad758" dependencies = [ "console-api", "crossbeam-channel", @@ -459,13 +459,14 @@ dependencies = [ "futures-task", "hdrhistogram", "humantime", + "prost", "prost-types", "serde", "serde_json", "thread_local", "tokio", "tokio-stream", - "tonic 0.10.2", + "tonic", "tracing", "tracing-core", "tracing-subscriber", @@ -559,7 +560,7 @@ dependencies = [ "tokio", "tokio-stream", "tokio-util", - "tonic 0.11.0", + "tonic", "tonic-build", "url", "uuid", @@ -585,7 +586,7 @@ dependencies = [ "log", "maybe-async", "prost", - "tonic 0.11.0", + "tonic", "tonic-build", ] @@ -1873,33 +1874,6 @@ dependencies = [ "winnow", ] -[[package]] -name = "tonic" -version = "0.10.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d560933a0de61cf715926b9cac824d4c883c2c43142f787595e48280c40a1d0e" -dependencies = [ - "async-stream", - "async-trait", - "axum", - "base64", - "bytes", - "h2", - "http", - "http-body", - "hyper", - "hyper-timeout", - "percent-encoding", - "pin-project", - "prost", - "tokio", - "tokio-stream", - "tower", - "tower-layer", - "tower-service", - "tracing", -] - [[package]] name = "tonic" version = "0.11.0" diff --git a/dtrd/Cargo.toml b/dtrd/Cargo.toml index 89cbb55..5464812 100644 --- a/dtrd/Cargo.toml +++ b/dtrd/Cargo.toml @@ -35,7 +35,7 @@ futures-util = "0.3.30" env_logger = "0.11.3" openssl = {version = "0.10.64", features = ["vendored"]} uuid = {version = "1.8.0", features = ["v4"]} -console-subscriber = "0.2.0" +console-subscriber = "0.3.0" actix = "0.13.3" actix-rt = "2.9.0" async-stream = "0.3.5"