diff options
| author | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-05-22 13:50:27 +1000 |
|---|---|---|
| committer | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-05-23 18:02:17 +1000 |
| commit | a7cd7bb8292861168860cf7a3d074db80cfd99b0 (patch) | |
| tree | 84dbd4b0101c86c5045459d97425e2e9bc7c8206 /compiler/rustc_interface/src/util.rs | |
| parent | 725292315e2867102c7955e40108744aabdd192b (diff) | |
| download | rust-a7cd7bb8292861168860cf7a3d074db80cfd99b0.tar.gz rust-a7cd7bb8292861168860cf7a3d074db80cfd99b0.zip | |
Remove `#[macro_use] extern crate tracing` from `rustc_interface`.
Diffstat (limited to 'compiler/rustc_interface/src/util.rs')
| -rw-r--r-- | compiler/rustc_interface/src/util.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_interface/src/util.rs b/compiler/rustc_interface/src/util.rs index 987e48a1a76..8dac524bb5b 100644 --- a/compiler/rustc_interface/src/util.rs +++ b/compiler/rustc_interface/src/util.rs @@ -1,5 +1,4 @@ use crate::errors; -use info; use rustc_ast as ast; use rustc_codegen_ssa::traits::CodegenBackend; #[cfg(parallel_compiler)] @@ -23,6 +22,7 @@ use std::sync::atomic::{AtomicBool, Ordering}; use std::sync::OnceLock; use std::thread; use std::{env, iter}; +use tracing::info; /// Function pointer type that constructs a new CodegenBackend. pub type MakeBackendFn = fn() -> Box<dyn CodegenBackend>; |
