about summary refs log tree commit diff
path: root/compiler/rustc_interface/src/lib.rs
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2024-05-22 13:50:27 +1000
committerNicholas Nethercote <n.nethercote@gmail.com>2024-05-23 18:02:17 +1000
commita7cd7bb8292861168860cf7a3d074db80cfd99b0 (patch)
tree84dbd4b0101c86c5045459d97425e2e9bc7c8206 /compiler/rustc_interface/src/lib.rs
parent725292315e2867102c7955e40108744aabdd192b (diff)
downloadrust-a7cd7bb8292861168860cf7a3d074db80cfd99b0.tar.gz
rust-a7cd7bb8292861168860cf7a3d074db80cfd99b0.zip
Remove `#[macro_use] extern crate tracing` from `rustc_interface`.
Diffstat (limited to 'compiler/rustc_interface/src/lib.rs')
-rw-r--r--compiler/rustc_interface/src/lib.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/compiler/rustc_interface/src/lib.rs b/compiler/rustc_interface/src/lib.rs
index 75df006a56f..c1d460ddd08 100644
--- a/compiler/rustc_interface/src/lib.rs
+++ b/compiler/rustc_interface/src/lib.rs
@@ -4,9 +4,6 @@
 #![feature(thread_spawn_unchecked)]
 #![feature(try_blocks)]
 
-#[macro_use]
-extern crate tracing;
-
 mod callbacks;
 mod errors;
 pub mod interface;