From cba51028b5bd96380f31541c9454de33604218ec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Nov 2023 17:17:46 +1100 Subject: [PATCH] Bump tracing-log from 0.1.4 to 0.2.0 (#615) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 17 ++++++++++++++--- notegraf-web/Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e626d548..490371a0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1420,7 +1420,7 @@ dependencies = [ "tracing", "tracing-actix-web", "tracing-futures", - "tracing-log", + "tracing-log 0.2.0", "tracing-opentelemetry", "tracing-subscriber", "uuid", @@ -2845,6 +2845,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-opentelemetry" version = "0.21.0" @@ -2857,7 +2868,7 @@ dependencies = [ "smallvec", "tracing", "tracing-core", - "tracing-log", + "tracing-log 0.1.4", "tracing-subscriber", ] @@ -2876,7 +2887,7 @@ dependencies = [ "thread_local", "tracing", "tracing-core", - "tracing-log", + "tracing-log 0.1.4", ] [[package]] diff --git a/notegraf-web/Cargo.toml b/notegraf-web/Cargo.toml index 3a69bc54..8968ffeb 100644 --- a/notegraf-web/Cargo.toml +++ b/notegraf-web/Cargo.toml @@ -28,7 +28,7 @@ tracing-opentelemetry = "0.21" tracing-actix-web = { version = "0.7.8", features = ["opentelemetry_0_20"] } tracing-futures = "0.2" tracing-subscriber = { version = "0.3", features = ["env-filter"] } -tracing-log = "0.1" +tracing-log = "0.2" lazy_static = "1.4" opentelemetry = { version = "0.20", features = ["rt-tokio-current-thread"] } opentelemetry-otlp = "0.13"