Remove #[macro_use] extern crate tracing from rustc_interface.

This commit is contained in:
Nicholas Nethercote
2024-05-22 13:50:27 +10:00
parent 725292315e
commit a7cd7bb829
4 changed files with 3 additions and 5 deletions

View File

@@ -39,6 +39,7 @@ use std::io::{self, BufWriter, Write};
use std::path::{Path, PathBuf};
use std::sync::LazyLock;
use std::{env, fs, iter};
use tracing::{info, instrument};
pub fn parse<'a>(sess: &'a Session) -> PResult<'a, ast::Crate> {
let krate = sess.time("parse_crate", || match &sess.io.input {