From cb9a68eb1ac15a9b8c62915e3fed2ec3ef1e1e2c Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Fri, 7 Jan 2022 20:13:28 -0800 Subject: [PATCH] examples: update `tracing-subscriber` to 0.3 (#4227) --- .cargo/audit.toml | 2 -- examples/Cargo.toml | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.cargo/audit.toml b/.cargo/audit.toml index d03b022ef..25e764be2 100644 --- a/.cargo/audit.toml +++ b/.cargo/audit.toml @@ -2,8 +2,6 @@ [advisories] ignore = [ - # https://github.com/tokio-rs/tokio/issues/4177 - "RUSTSEC-2020-0159", # We depend on nix 0.22 only via mio-aio, a dev-dependency. # https://github.com/tokio-rs/tokio/pull/4255#issuecomment-974786349 "RUSTSEC-2021-0119", diff --git a/examples/Cargo.toml b/examples/Cargo.toml index b37adff09..d2aca69d8 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -12,7 +12,7 @@ tokio-util = { version = "0.7.0", path = "../tokio-util", features = ["full"] } tokio-stream = { version = "0.1", path = "../tokio-stream" } tracing = "0.1" -tracing-subscriber = { version = "0.2.7", default-features = false, features = ["fmt", "ansi", "env-filter", "chrono", "tracing-log"] } +tracing-subscriber = { version = "0.3.1", default-features = false, features = ["fmt", "ansi", "env-filter", "tracing-log"] } bytes = "1.0.0" futures = { version = "0.3.0", features = ["thread-pool"]} http = "0.2"