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