Skip to content

Commit b96fa1a

Browse files
committed
Auto merge of #98626 - oli-obk:tracing, r=lcnr
bump tracing version Bump tracing dependency to 0.1.35 to give us features like printing the return value of functions
2 parents 7a42ca9 + a4375cb commit b96fa1a

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed

Cargo.lock

+14-7
Original file line numberDiff line numberDiff line change
@@ -4998,9 +4998,9 @@ checksum = "aa7c7f42dea4b1b99439786f5633aeb9c14c1b53f75e282803c2ec2ad545873c"
49984998

49994999
[[package]]
50005000
name = "tracing"
5001-
version = "0.1.29"
5001+
version = "0.1.35"
50025002
source = "registry+https://github.com/rust-lang/crates.io-index"
5003-
checksum = "375a639232caf30edfc78e8d89b2d4c375515393e7af7e16f01cd96917fb2105"
5003+
checksum = "a400e31aa60b9d44a52a8ee0343b5b18566b03a8321e0d321f695cf56e940160"
50045004
dependencies = [
50055005
"cfg-if 1.0.0",
50065006
"pin-project-lite",
@@ -5010,9 +5010,9 @@ dependencies = [
50105010

50115011
[[package]]
50125012
name = "tracing-attributes"
5013-
version = "0.1.18"
5013+
version = "0.1.22"
50145014
source = "registry+https://github.com/rust-lang/crates.io-index"
5015-
checksum = "f4f480b8f81512e825f337ad51e94c1eb5d3bbdf2b363dcd01e2b19a9ffe3f8e"
5015+
checksum = "11c75893af559bc8e10716548bdef5cb2b983f8e637db9d0e15126b61b484ee2"
50165016
dependencies = [
50175017
"proc-macro2",
50185018
"quote",
@@ -5021,11 +5021,12 @@ dependencies = [
50215021

50225022
[[package]]
50235023
name = "tracing-core"
5024-
version = "0.1.21"
5024+
version = "0.1.28"
50255025
source = "registry+https://github.com/rust-lang/crates.io-index"
5026-
checksum = "1f4ed65637b8390770814083d20756f87bfa2c21bf2f110babdc5438351746e4"
5026+
checksum = "7b7358be39f2f274f322d2aaed611acc57f382e8eb1e5b48cb9ae30933495ce7"
50275027
dependencies = [
5028-
"lazy_static",
5028+
"once_cell",
5029+
"valuable",
50295030
]
50305031

50315032
[[package]]
@@ -5344,6 +5345,12 @@ version = "0.1.1"
53445345
source = "registry+https://github.com/rust-lang/crates.io-index"
53455346
checksum = "8772a4ccbb4e89959023bc5b7cb8623a795caa7092d99f3aa9501b9484d4557d"
53465347

5348+
[[package]]
5349+
name = "valuable"
5350+
version = "0.1.0"
5351+
source = "registry+https://github.com/rust-lang/crates.io-index"
5352+
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
5353+
53475354
[[package]]
53485355
name = "vcpkg"
53495356
version = "0.2.10"

compiler/rustc_trait_selection/src/traits/fulfill.rs

+1
Original file line numberDiff line numberDiff line change
@@ -597,6 +597,7 @@ impl<'a, 'b, 'tcx> ObligationProcessor for FulfillProcessor<'a, 'b, 'tcx> {
597597
}
598598
}
599599

600+
#[inline(never)]
600601
fn process_backedge<'c, I>(
601602
&mut self,
602603
cycle: I,

src/tools/tidy/src/deps.rs

+1
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,7 @@ const PERMITTED_DEPENDENCIES: &[&str] = &[
246246
"unicode-width",
247247
"unicode-xid",
248248
"vcpkg",
249+
"valuable",
249250
"version_check",
250251
"wasi",
251252
"winapi",

0 commit comments

Comments
 (0)