Merge pull request #693 from vbrandl/dependabot/cargo/tracing-log-0.2.0

Bump tracing-log from 0.1.4 to 0.2.0
This commit is contained in:
Valentin Brandl 2023-10-26 09:22:10 +02:00 committed by GitHub
commit f56a9765aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 5 deletions

View File

@ -25,7 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Bump `bytes` from 1.4.0 to 1.5.0 ([#677](https://github.com/vbrandl/hoc/pull/677))
- Bump `stefanzweifel/git-auto-commit-action` from 4 to 5 ([#685](https://github.com/vbrandl/hoc/pull/685))
- Bump `tracing` from 0.1.37 to 0.1.40 ([#688](https://github.com/vbrandl/hoc/pull/688), [#689](https://github.com/vbrandl/hoc/pull/689))
- Bump `tracing-log` from 0.1.3 to 0.1.4 ([#691](https://github.com/vbrandl/hoc/pull/691))
- Bump `tracing-log` from 0.1.3 to 0.2.0 ([#691](https://github.com/vbrandl/hoc/pull/691), [#693](https://github.com/vbrandl/hoc/pull/693))
## [0.35.0] 2023-05-04

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]