From b95f683f0514978429535a75c86f8974b05a69aa Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Fri, 4 Feb 2022 14:06:08 -0800 Subject: [PATCH] fix: console-api dependencies to require 0.1.2 (#274) This should ensure we don't see any compilation errors. Signed-off-by: Eliza Weisman --- console-subscriber/Cargo.toml | 2 +- tokio-console/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/console-subscriber/Cargo.toml b/console-subscriber/Cargo.toml index db6e1a1d7..588f8805f 100644 --- a/console-subscriber/Cargo.toml +++ b/console-subscriber/Cargo.toml @@ -33,7 +33,7 @@ parking_lot = ["parking_lot_crate", "tracing-subscriber/parking_lot"] tokio = { version = "^1.15", features = ["sync", "time", "macros", "tracing"] } tokio-stream = "0.1" thread_local = "1.1.3" -console-api = { version = "0.1.1", path = "../console-api", features = ["transport"] } +console-api = { version = "0.1.2", path = "../console-api", features = ["transport"] } tonic = { version = "0.6", features = ["transport"] } tracing-core = "0.1.18" tracing = "0.1.26" diff --git a/tokio-console/Cargo.toml b/tokio-console/Cargo.toml index 8fbb33a90..77b149d54 100644 --- a/tokio-console/Cargo.toml +++ b/tokio-console/Cargo.toml @@ -27,7 +27,7 @@ keywords = [ [dependencies] atty = "0.2" -console-api = { version = "0.1.1", path = "../console-api", features = ["transport"] } +console-api = { version = "0.1.2", path = "../console-api", features = ["transport"] } clap = { version = "3", features = ["cargo", "derive", "env"] } tokio = { version = "1", features = ["full", "rt-multi-thread"] } tonic = { version = "0.6", features = ["transport"] }