diff --git a/CHANGELOG.md b/CHANGELOG.md index 47e7f8f..7838f5b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 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]