From 5253f92a235495dc729fb5735b8c0e87d4df37c4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Oct 2023 04:32:47 +0000 Subject: [PATCH] Bump tracing-log from 0.1.4 to 0.2.0 Bumps [tracing-log](https://github.com/tokio-rs/tracing) from 0.1.4 to 0.2.0. - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-log-0.1.4...tracing-log-0.2.0) --- updated-dependencies: - dependency-name: tracing-log dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 17 ++++++++++++++--- Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cc94a94..22e276d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1428,7 +1428,7 @@ dependencies = [ "tracing-actix-web", "tracing-bunyan-formatter", "tracing-futures", - "tracing-log", + "tracing-log 0.2.0", "tracing-subscriber", "vergen", ] @@ -2734,7 +2734,7 @@ dependencies = [ "time", "tracing", "tracing-core", - "tracing-log", + "tracing-log 0.1.4", "tracing-subscriber", ] @@ -2769,6 +2769,17 @@ dependencies = [ "tracing-core", ] +[[package]] +name = "tracing-log" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" +dependencies = [ + "log", + "once_cell", + "tracing-core", +] + [[package]] name = "tracing-subscriber" version = "0.3.17" @@ -2784,7 +2795,7 @@ dependencies = [ "thread_local", "tracing", "tracing-core", - "tracing-log", + "tracing-log 0.1.4", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 496c00d..abf4416 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ tracing = "0.1.40" tracing-actix-web = "0.7.8" tracing-bunyan-formatter = "0.3.9" tracing-futures = "0.2.5" -tracing-log = "0.1.4" +tracing-log = "0.2.0" tracing-subscriber = { version = "0.3.17", features = ["registry", "env-filter"] } [build-dependencies]