mirror of
https://github.com/Hopiu/lychee.git
synced 2026-05-14 00:33:10 +00:00
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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
667c0351b4
commit
4a717b5947
2 changed files with 28 additions and 4 deletions
30
Cargo.lock
generated
30
Cargo.lock
generated
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue