From daf406dd2b73b73c779517a65a09942b0c2bde84 Mon Sep 17 00:00:00 2001 From: tottoto Date: Thu, 30 Dec 2021 17:53:02 +0900 Subject: [PATCH] chore: Update tracing-subscriber to 0.3 (#873) --- examples/Cargo.toml | 2 +- interop/Cargo.toml | 2 +- tests/integration_tests/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 17ec72f..3857d69 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -194,7 +194,7 @@ serde_json = "1.0" tracing = "0.1.16" tracing-attributes = "0.1" tracing-futures = "0.2" -tracing-subscriber = {version = "0.2", features = ["tracing-log"]} +tracing-subscriber = {version = "0.3", features = ["tracing-log"]} # Required for wellknown types prost-types = "0.9" # Hyper example diff --git a/interop/Cargo.toml b/interop/Cargo.toml index ecb312f..2956f92 100644 --- a/interop/Cargo.toml +++ b/interop/Cargo.toml @@ -32,7 +32,7 @@ tonic = {path = "../tonic", features = ["tls"]} tower = {version = "0.4"} tracing = "0.1" tracing-log = "0.1" -tracing-subscriber = "0.2" +tracing-subscriber = {version = "0.3", features = ["env-filter"]} [build-dependencies] tonic-build = {path = "../tonic-build", features = ["prost"]} diff --git a/tests/integration_tests/Cargo.toml b/tests/integration_tests/Cargo.toml index 96863ab..1382649 100644 --- a/tests/integration_tests/Cargo.toml +++ b/tests/integration_tests/Cargo.toml @@ -24,7 +24,7 @@ hyper = "0.14" tokio-stream = {version = "0.1.5", features = ["net"]} tower = {version = "0.4", features = []} tower-service = "0.3" -tracing-subscriber = "0.2" +tracing-subscriber = {version = "0.3", features = ["env-filter"]} [build-dependencies] tonic-build = {path = "../../tonic-build"}