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

This commit is contained in:
Nicholas Nethercote 2024-05-22 13:43:08 +10:00
parent bbe4efdb47
commit 448fc75232
1 changed files with 1 additions and 3 deletions

View File

@ -5,9 +5,6 @@
#![feature(type_alias_impl_trait)]
#![allow(internal_features)]
#[macro_use]
extern crate tracing;
use fluent_bundle::FluentResource;
use fluent_syntax::parser::ParserError;
use icu_provider_adapters::fallback::{LocaleFallbackProvider, LocaleFallbacker};
@ -20,6 +17,7 @@ use std::fmt;
use std::fs;
use std::io;
use std::path::{Path, PathBuf};
use tracing::{instrument, trace};
#[cfg(not(parallel_compiler))]
use std::cell::LazyCell as Lazy;