From 4a717b594733190b9275d6bad531de065a03e1a4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 26 Oct 2021 00:56:39 +0200 Subject: [PATCH] Bump tracing-subscriber from 0.2.25 to 0.3.0 (#368) Bumps [tracing-subscriber](https://github.com/tokio-rs/tracing) from 0.2.25 to 0.3.0. - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.2.25...tracing-subscriber-0.3.0) --- updated-dependencies: - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 30 +++++++++++++++++++++++++++--- lychee-bin/Cargo.toml | 2 +- 2 files changed, 28 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 20a5eaf..b46735b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -596,7 +596,7 @@ dependencies = [ "tonic", "tracing", "tracing-core", - "tracing-subscriber", + "tracing-subscriber 0.2.25", ] [[package]] @@ -1573,7 +1573,7 @@ dependencies = [ "tempfile", "tokio", "toml", - "tracing-subscriber", + "tracing-subscriber 0.3.0", "uuid", "wiremock", ] @@ -1668,6 +1668,15 @@ dependencies = [ "regex-automata", ] +[[package]] +name = "matchers" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" +dependencies = [ + "regex-automata", +] + [[package]] name = "matches" version = "0.1.8" @@ -3089,7 +3098,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0e0d2eaa99c3c2e41547cfa109e910a68ea03823cccad4a0525dcbc9b01e8c71" dependencies = [ "lazy_static", - "matchers", + "matchers 0.0.1", + "regex", + "sharded-slab", + "thread_local", + "tracing", + "tracing-core", +] + +[[package]] +name = "tracing-subscriber" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5cf865b5ddc38e503a29c41c4843e616a73028ae18c637bc3eb2afaef4909c84" +dependencies = [ + "lazy_static", + "matchers 0.1.0", "regex", "sharded-slab", "thread_local", diff --git a/lychee-bin/Cargo.toml b/lychee-bin/Cargo.toml index afc0995..e6c20af 100644 --- a/lychee-bin/Cargo.toml +++ b/lychee-bin/Cargo.toml @@ -47,7 +47,7 @@ pretty_assertions = "1.0.0" tempfile = "3.2.0" uuid = { version = "0.8.2", features = ["v4"] } wiremock = "0.5.7" -tracing-subscriber = { version = "0.2.25", default-features = false, features = ["fmt", "registry", "env-filter"] } +tracing-subscriber = { version = "0.3.0", default-features = false, features = ["fmt", "registry", "env-filter"] } [dependencies.console-subscriber] optional = true