1
Fork 0

Bump tracing-subscriber

This commit is contained in:
Laurențiu Nicola 2023-11-15 13:04:39 +02:00
parent d83620a5ba
commit 2dbdaa247b
4 changed files with 24 additions and 14 deletions

23
Cargo.lock generated
View file

@ -1601,7 +1601,7 @@ dependencies = [
"tikv-jemallocator", "tikv-jemallocator",
"toolchain", "toolchain",
"tracing", "tracing",
"tracing-log", "tracing-log 0.1.3",
"tracing-subscriber", "tracing-subscriber",
"tracing-tree", "tracing-tree",
"triomphe", "triomphe",
@ -2036,15 +2036,26 @@ dependencies = [
] ]
[[package]] [[package]]
name = "tracing-subscriber" name = "tracing-log"
version = "0.3.17" version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77" checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
dependencies = [
"log",
"once_cell",
"tracing-core",
]
[[package]]
name = "tracing-subscriber"
version = "0.3.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
dependencies = [ dependencies = [
"sharded-slab", "sharded-slab",
"thread_local", "thread_local",
"tracing-core", "tracing-core",
"tracing-log", "tracing-log 0.2.0",
] ]
[[package]] [[package]]
@ -2055,7 +2066,7 @@ checksum = "2ec6adcab41b1391b08a308cc6302b79f8095d1673f6947c2dc65ffb028b0b2d"
dependencies = [ dependencies = [
"nu-ansi-term", "nu-ansi-term",
"tracing-core", "tracing-core",
"tracing-log", "tracing-log 0.1.3",
"tracing-subscriber", "tracing-subscriber",
] ]

View file

@ -99,6 +99,11 @@ smallvec = { version = "1.10.0", features = [
] } ] }
tracing = "0.1.40" tracing = "0.1.40"
tracing-tree = "0.2.5" tracing-tree = "0.2.5"
tracing-subscriber = { version = "0.3.18", default-features = false, features = [
"registry",
"fmt",
"tracing-log",
] }
smol_str = "0.2.0" smol_str = "0.2.0"
nohash-hasher = "0.2.0" nohash-hasher = "0.2.0"
text-size = "1.1.0" text-size = "1.1.0"

View file

@ -48,9 +48,7 @@ limit.workspace = true
[dev-dependencies] [dev-dependencies]
expect-test = "1.4.0" expect-test = "1.4.0"
tracing.workspace = true tracing.workspace = true
tracing-subscriber = { version = "0.3.16", default-features = false, features = [ tracing-subscriber.workspace = true
"registry",
] }
tracing-tree.workspace = true tracing-tree.workspace = true
project-model = { path = "../project-model" } project-model = { path = "../project-model" }

View file

@ -36,11 +36,7 @@ num_cpus = "1.15.0"
mimalloc = { version = "0.1.30", default-features = false, optional = true } mimalloc = { version = "0.1.30", default-features = false, optional = true }
lsp-server.workspace = true lsp-server.workspace = true
tracing.workspace = true tracing.workspace = true
tracing-subscriber = { version = "0.3.16", default-features = false, features = [ tracing-subscriber.workspace = true
"registry",
"fmt",
"tracing-log",
] }
tracing-log = "0.1.3" tracing-log = "0.1.3"
tracing-tree.workspace = true tracing-tree.workspace = true
triomphe.workspace = true triomphe.workspace = true