about summary refs log tree commit diff
path: root/compiler/rustc_parse/src/lib.rs
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2024-05-22 14:42:14 +1000
committerNicholas Nethercote <n.nethercote@gmail.com>2024-05-23 18:02:40 +1000
commitbb364fe9502e1a70c9464bbfdbc40a280caad762 (patch)
tree5e4efa5e272cc8a7061147636d5af127952be828 /compiler/rustc_parse/src/lib.rs
parent25393640537d3a0a7e8840fb6b12657d2c262275 (diff)
downloadrust-bb364fe9502e1a70c9464bbfdbc40a280caad762.tar.gz
rust-bb364fe9502e1a70c9464bbfdbc40a280caad762.zip
Remove `#[macro_use] extern crate tracing` from `rustc_parse`.
Diffstat (limited to 'compiler/rustc_parse/src/lib.rs')
-rw-r--r--compiler/rustc_parse/src/lib.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/compiler/rustc_parse/src/lib.rs b/compiler/rustc_parse/src/lib.rs
index 0f973dfcd79..322739be3fb 100644
--- a/compiler/rustc_parse/src/lib.rs
+++ b/compiler/rustc_parse/src/lib.rs
@@ -10,9 +10,6 @@
 #![feature(iter_intersperse)]
 #![feature(let_chains)]
 
-#[macro_use]
-extern crate tracing;
-
 use rustc_ast as ast;
 use rustc_ast::token;
 use rustc_ast::tokenstream::TokenStream;