Bump tracing-tree

This commit is contained in:
Laurențiu Nicola 2023-11-15 13:01:54 +02:00
parent f53368dd3f
commit d83620a5ba
4 changed files with 6 additions and 26 deletions

27
Cargo.lock generated
View file

@ -44,17 +44,6 @@ version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi 0.1.19",
"libc",
"winapi",
]
[[package]]
name = "autocfg"
version = "1.1.0"
@ -468,15 +457,6 @@ dependencies = [
"unicode-segmentation",
]
[[package]]
name = "hermit-abi"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
"libc",
]
[[package]]
name = "hermit-abi"
version = "0.2.6"
@ -1161,7 +1141,7 @@ version = "1.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
dependencies = [
"hermit-abi 0.2.6",
"hermit-abi",
"libc",
]
@ -2069,11 +2049,10 @@ dependencies = [
[[package]]
name = "tracing-tree"
version = "0.2.3"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4f9742d8df709837409dbb22aa25dd7769c260406f20ff48a2320b80a4a6aed0"
checksum = "2ec6adcab41b1391b08a308cc6302b79f8095d1673f6947c2dc65ffb028b0b2d"
dependencies = [
"atty",
"nu-ansi-term",
"tracing-core",
"tracing-log",

View file

@ -98,6 +98,7 @@ smallvec = { version = "1.10.0", features = [
"const_generics",
] }
tracing = "0.1.40"
tracing-tree = "0.2.5"
smol_str = "0.2.0"
nohash-hasher = "0.2.0"
text-size = "1.1.0"

View file

@ -51,7 +51,7 @@ tracing.workspace = true
tracing-subscriber = { version = "0.3.16", default-features = false, features = [
"registry",
] }
tracing-tree = "0.2.1"
tracing-tree.workspace = true
project-model = { path = "../project-model" }
# local deps

View file

@ -42,7 +42,7 @@ tracing-subscriber = { version = "0.3.16", default-features = false, features =
"tracing-log",
] }
tracing-log = "0.1.3"
tracing-tree = "0.2.1"
tracing-tree.workspace = true
triomphe.workspace = true
nohash-hasher.workspace = true
always-assert = "0.1.2"