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] <support@github.com>
This commit is contained in:
dependabot[bot] 2023-10-26 04:32:47 +00:00 committed by GitHub
parent ec01d04516
commit 5253f92a23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 4 deletions

17
Cargo.lock generated
View File

@ -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]]

View File

@ -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]