1
Fork 0

Remove #[macro_use] extern crate tracing from rustc_span`.

Because explicit macro imports are better than implicit macro imports.
This commit is contained in:
Nicholas Nethercote 2024-05-22 07:51:27 +10:00
parent 220f3ab825
commit e60c1916e0
3 changed files with 3 additions and 3 deletions

View file

@ -16,6 +16,7 @@ use rustc_macros::{Decodable, Encodable};
use std::fs;
use std::io::{self, BorrowedBuf, Read};
use std::path;
use tracing::{debug, instrument, trace};
#[cfg(test)]
mod tests;