about summary refs log tree commit diff
path: root/src/tools/llvm-bitcode-linker
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2025-09-02 19:09:13 +1000
committerNicholas Nethercote <n.nethercote@gmail.com>2025-09-02 19:12:54 +1000
commit301655eafe56a4b5064adebd412becf94b59221c (patch)
tree5a5f0080ec45efb24a56c35d972c932fdbab09e5 /src/tools/llvm-bitcode-linker
parent05abce5d058db0de3abd10f32f1a442d0f699b30 (diff)
downloadrust-301655eafe56a4b5064adebd412becf94b59221c.tar.gz
rust-301655eafe56a4b5064adebd412becf94b59221c.zip
Revert introduction of `[workspace.dependencies]`.
This was done in #145740 and #145947. It is causing problems for people
using r-a on anything that uses the rustc-dev rustup package, e.g. Miri,
clippy.

This repository has lots of submodules and subtrees and various
different projects are carved out of pieces of it. It seems like
`[workspace.dependencies]` will just be more trouble than it's worth.
Diffstat (limited to 'src/tools/llvm-bitcode-linker')
-rw-r--r--src/tools/llvm-bitcode-linker/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/llvm-bitcode-linker/Cargo.toml b/src/tools/llvm-bitcode-linker/Cargo.toml
index f78f8b618d3..a9210b562f3 100644
--- a/src/tools/llvm-bitcode-linker/Cargo.toml
+++ b/src/tools/llvm-bitcode-linker/Cargo.toml
@@ -8,7 +8,7 @@ publish = false
 
 [dependencies]
 anyhow = "1.0"
-tracing.workspace = true
-tracing-subscriber = { version = "0.3.0", features = ["std"] }
+tracing = "0.1"
+tracing-subscriber = {version = "0.3.0", features = ["std"] }
 clap = { version = "4.3", features = ["derive"] }
 thiserror = "1.0.24"