From 3fa3536e421161e84e40370715089febdc0d839b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 May 2022 09:29:50 +0000 Subject: [PATCH] Bump tracing-journald from 0.2.0 to 0.3.0 Bumps [tracing-journald](https://github.com/tokio-rs/tracing) from 0.2.0 to 0.3.0. - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-journald-0.2.0...tracing-journald-0.3.0) --- updated-dependencies: - dependency-name: tracing-journald dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 5 +++-- jormungandr/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0fa05779d2..e480c67448 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5245,10 +5245,11 @@ dependencies = [ [[package]] name = "tracing-journald" -version = "0.2.0" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c35f4a6b4b2d00511aa9e17d4efc74d4c3ddc5a5416f58a5de25c30bfeb0307" +checksum = "ba316a74e8fc3c3896a850dba2375928a9fa171b085ecddfc7c054d39970f3fd" dependencies = [ + "libc", "tracing-core", "tracing-subscriber", ] diff --git a/jormungandr/Cargo.toml b/jormungandr/Cargo.toml index d1bcf695a4..fce9dc3100 100644 --- a/jormungandr/Cargo.toml +++ b/jormungandr/Cargo.toml @@ -49,7 +49,7 @@ tracing = "0.1" tracing-futures = "0.2" tracing-gelf = { version = "0.6", optional = true } # TODO unpin this when cross for ARM targets is fixed: https://github.com/cross-rs/cross/pull/591 -tracing-journald = { version = "=0.2.0", optional = true } +tracing-journald = { version = "=0.3.0", optional = true } tracing-subscriber = { version = "0.3", features = ["fmt", "json", "time"] } tracing-appender = "0.2" tokio = { version = "^1.15", features = ["rt-multi-thread", "time", "sync", "rt", "signal", "test-util"] }