Skip to content

Commit 56b5393

Browse files
authored
Rollup merge of #82938 - oli-obk:tracing_tree_bump, r=Mark-Simulacrum
Bump tracing-tree dependency This bump fixes two small rendering things that were annoying me: * The first level didn't have an opening line * When wraparound happens, there was no warning, the levels just disappeared. Now there is a line that shows that wraparound is happening See https://github.com/davidbarsky/tracing-tree/pull/31/files for how the look changes
2 parents 8e6383d + 62f2d72 commit 56b5393

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -5460,9 +5460,9 @@ dependencies = [
54605460

54615461
[[package]]
54625462
name = "tracing-tree"
5463-
version = "0.1.8"
5463+
version = "0.1.9"
54645464
source = "registry+https://github.com/rust-lang/crates.io-index"
5465-
checksum = "1a60657cfbf397c603257a8230b3f427e6a2a4e5911a59331b9bb4dffff5b608"
5465+
checksum = "1712b40907f8d9bc2bc66763ab61dec914b7123d7149e59feb0d4e2a95fc4967"
54665466
dependencies = [
54675467
"ansi_term 0.12.1",
54685468
"atty",

compiler/rustc_driver/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ libc = "0.2"
1212
atty = "0.2"
1313
tracing = { version = "0.1.25" }
1414
tracing-subscriber = { version = "0.2.16", default-features = false, features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"] }
15-
tracing-tree = "0.1.8"
15+
tracing-tree = "0.1.9"
1616
rustc_middle = { path = "../rustc_middle" }
1717
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
1818
rustc_target = { path = "../rustc_target" }

src/librustdoc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ itertools = "0.9"
2020
regex = "1"
2121
rustdoc-json-types = { path = "../rustdoc-json-types" }
2222
tracing = "0.1"
23-
tracing-tree = "0.1.6"
23+
tracing-tree = "0.1.9"
2424

2525
[dependencies.tracing-subscriber]
2626
version = "0.2.13"

0 commit comments

Comments
 (0)