Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e49d3c4

Browse files
Auto merge of #127316 - klensy:tracing-bump, r=<try>
bump tracing
2 parents 79bdc62 + 267d3c8 commit e49d3c4

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

Cargo.lock

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4072,7 +4072,6 @@ name = "rustc_log"
40724072
version = "0.0.0"
40734073
dependencies = [
40744074
"tracing",
4075-
"tracing-core",
40764075
"tracing-subscriber",
40774076
"tracing-tree",
40784077
]
@@ -5541,9 +5540,9 @@ dependencies = [
55415540

55425541
[[package]]
55435542
name = "tracing-core"
5544-
version = "0.1.30"
5543+
version = "0.1.34"
55455544
source = "registry+https://github.com/rust-lang/crates.io-index"
5546-
checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
5545+
checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
55475546
dependencies = [
55485547
"once_cell",
55495548
"valuable",

compiler/rustc_log/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ edition = "2024"
55

66
[dependencies]
77
# tidy-alphabetical-start
8-
tracing = "0.1.28"
9-
tracing-core = "=0.1.30" # FIXME(Nilstrieb) tracing has a deadlock: https://github.com/tokio-rs/tracing/issues/2635
8+
# tracing > 0.1.37 have huge binary size / instructions regression
9+
tracing = "=0.1.37"
1010
tracing-subscriber = { version = "0.3.3", default-features = false, features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"] }
1111
tracing-tree = "0.3.1"
1212
# tidy-alphabetical-end

compiler/rustc_log/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ use std::fmt::{self, Display};
3838
use std::io::{self, IsTerminal};
3939

4040
use tracing::dispatcher::SetGlobalDefaultError;
41-
use tracing_core::{Event, Subscriber};
41+
use tracing::{Event, Subscriber};
4242
use tracing_subscriber::filter::{Directive, EnvFilter, LevelFilter};
4343
use tracing_subscriber::fmt::FmtContext;
4444
use tracing_subscriber::fmt::format::{self, FormatEvent, FormatFields};

0 commit comments

Comments
 (0)