Skip to content

Commit ba0cc73

Browse files
committed
Auto merge of rust-lang#134770 - clubby789:tracing-bump, r=<try>
Bump tracing Retry of rust-lang#127316, lets see if things have improved
2 parents 7c002ff + 7e4dcf9 commit ba0cc73

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

Cargo.lock

+4-6
Original file line numberDiff line numberDiff line change
@@ -4052,7 +4052,6 @@ version = "0.0.0"
40524052
dependencies = [
40534053
"rustc_span",
40544054
"tracing",
4055-
"tracing-core",
40564055
"tracing-subscriber",
40574056
"tracing-tree",
40584057
]
@@ -5488,11 +5487,10 @@ checksum = "ea68304e134ecd095ac6c3574494fc62b909f416c4fca77e440530221e549d3d"
54885487

54895488
[[package]]
54905489
name = "tracing"
5491-
version = "0.1.37"
5490+
version = "0.1.41"
54925491
source = "registry+https://github.com/rust-lang/crates.io-index"
5493-
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
5492+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
54945493
dependencies = [
5495-
"cfg-if",
54965494
"pin-project-lite",
54975495
"tracing-attributes",
54985496
"tracing-core",
@@ -5511,9 +5509,9 @@ dependencies = [
55115509

55125510
[[package]]
55135511
name = "tracing-core"
5514-
version = "0.1.30"
5512+
version = "0.1.33"
55155513
source = "registry+https://github.com/rust-lang/crates.io-index"
5516-
checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
5514+
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
55175515
dependencies = [
55185516
"once_cell",
55195517
"valuable",

compiler/rustc_log/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ edition = "2021"
66
[dependencies]
77
# tidy-alphabetical-start
88
tracing = "0.1.28"
9-
tracing-core = "=0.1.30" # FIXME(Nilstrieb) tracing has a deadlock: https://github.com/tokio-rs/tracing/issues/2635
109
tracing-subscriber = { version = "0.3.3", default-features = false, features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"] }
1110
tracing-tree = "0.3.1"
1211
# tidy-alphabetical-end

compiler/rustc_log/src/lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@
4141
use std::env::{self, VarError};
4242
use std::fmt::{self, Display};
4343
use std::io::{self, IsTerminal};
44-
45-
use tracing_core::{Event, Subscriber};
44+
use tracing::{Event, Subscriber};
4645
use tracing_subscriber::filter::{Directive, EnvFilter, LevelFilter};
4746
use tracing_subscriber::fmt::FmtContext;
4847
use tracing_subscriber::fmt::format::{self, FormatEvent, FormatFields};

0 commit comments

Comments
 (0)