Skip to content

Commit 3e29d4e

Browse files
committed
Add tracing to [workspace.dependencies].
1 parent 6b8dc4c commit 3e29d4e

File tree

51 files changed

+52
-51
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+52
-51
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ bitflags = "2.9.1"
6565
memchr = "2.7.5"
6666
rustc-literal-escaper = "0.0.5"
6767
thin-vec = "0.2.14"
68+
tracing = "0.1.37"
6869
# tidy-alphabetical-end
6970

7071
[profile.release.package.rustc_thread_pool]

compiler/rustc_abi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ rustc_index = { path = "../rustc_index", default-features = false }
1414
rustc_macros = { path = "../rustc_macros", optional = true }
1515
rustc_serialize = { path = "../rustc_serialize", optional = true }
1616
rustc_span = { path = "../rustc_span", optional = true }
17-
tracing = "0.1"
17+
tracing.workspace = true
1818
# tidy-alphabetical-end
1919

2020
[features]

compiler/rustc_ast_lowering/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ rustc_span = { path = "../rustc_span" }
2525
rustc_target = { path = "../rustc_target" }
2626
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
2727
thin-vec.workspace = true
28-
tracing = "0.1"
28+
tracing.workspace = true
2929
# tidy-alphabetical-end

compiler/rustc_borrowck/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ rustc_span = { path = "../rustc_span" }
2525
rustc_trait_selection = { path = "../rustc_trait_selection" }
2626
rustc_traits = { path = "../rustc_traits" }
2727
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
28-
tracing = "0.1"
28+
tracing.workspace = true
2929
# tidy-alphabetical-end

compiler/rustc_builtin_macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ rustc_span = { path = "../rustc_span" }
3131
rustc_target = { path = "../rustc_target" }
3232
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
3333
thin-vec.workspace = true
34-
tracing = "0.1"
34+
tracing.workspace = true
3535
# tidy-alphabetical-end

compiler/rustc_codegen_llvm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ rustc_target = { path = "../rustc_target" }
4040
serde = { version = "1", features = ["derive"] }
4141
serde_json = "1"
4242
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
43-
tracing = "0.1"
43+
tracing.workspace = true
4444
# tidy-alphabetical-end
4545

4646
[features]

compiler/rustc_codegen_ssa/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
4242
tempfile = "3.2"
4343
thin-vec.workspace = true
4444
thorin-dwp = "0.9"
45-
tracing = "0.1"
45+
tracing.workspace = true
4646
wasm-encoder = "0.219"
4747
# tidy-alphabetical-end
4848

compiler/rustc_const_eval/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ rustc_session = { path = "../rustc_session" }
2222
rustc_span = { path = "../rustc_span" }
2323
rustc_target = { path = "../rustc_target" }
2424
rustc_trait_selection = { path = "../rustc_trait_selection" }
25-
tracing = "0.1"
25+
tracing.workspace = true
2626
# tidy-alphabetical-end

compiler/rustc_data_structures/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ smallvec = { version = "1.8.1", features = ["const_generics", "union", "may_dang
2626
stacker = "0.1.17"
2727
tempfile = "3.2"
2828
thin-vec.workspace = true
29-
tracing = "0.1"
29+
tracing.workspace = true
3030
# tidy-alphabetical-end
3131

3232
[dependencies.hashbrown]

compiler/rustc_driver_impl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ rustc_trait_selection = { path = "../rustc_trait_selection" }
5151
rustc_ty_utils = { path = "../rustc_ty_utils" }
5252
serde_json = "1.0.59"
5353
shlex = "1.0"
54-
tracing = { version = "0.1.35" }
54+
tracing.workspace = true
5555
# tidy-alphabetical-end
5656

5757
[target.'cfg(all(unix, any(target_env = "gnu", target_os = "macos")))'.dependencies]

0 commit comments

Comments
 (0)