diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fe348f..47e7f8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +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)) ## [0.35.0] 2023-05-04 diff --git a/Cargo.lock b/Cargo.lock index bb5a810..cc94a94 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2760,12 +2760,12 @@ dependencies = [ [[package]] name = "tracing-log" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" +checksum = "f751112709b4e791d8ce53e32c4ed2d353565a795ce84da2285393f41557bdf2" dependencies = [ - "lazy_static", "log", + "once_cell", "tracing-core", ] diff --git a/Cargo.toml b/Cargo.toml index 7f58c06..496c00d 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.3" +tracing-log = "0.1.4" tracing-subscriber = { version = "0.3.17", features = ["registry", "env-filter"] } [build-dependencies]