diff options
| author | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-04-29 16:24:06 +1000 | 
|---|---|---|
| committer | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-04-30 16:47:49 +1000 | 
| commit | 6341935a13b903a563d7e8678a98f9974629e5a9 (patch) | |
| tree | ffdd97cbb95f2153387d4410e0589db3f02af2b7 /compiler/rustc_query_system/src/dep_graph/mod.rs | |
| parent | 52e9a23bdcd094cab07d13156a22d2d682bc63b6 (diff) | |
| download | rust-6341935a13b903a563d7e8678a98f9974629e5a9.tar.gz rust-6341935a13b903a563d7e8678a98f9974629e5a9.zip | |
Remove `extern crate tracing` from numerous crates.
Diffstat (limited to 'compiler/rustc_query_system/src/dep_graph/mod.rs')
| -rw-r--r-- | compiler/rustc_query_system/src/dep_graph/mod.rs | 5 | 
1 files changed, 2 insertions, 3 deletions
| diff --git a/compiler/rustc_query_system/src/dep_graph/mod.rs b/compiler/rustc_query_system/src/dep_graph/mod.rs index feb69ecd078..cbd80295887 100644 --- a/compiler/rustc_query_system/src/dep_graph/mod.rs +++ b/compiler/rustc_query_system/src/dep_graph/mod.rs @@ -11,13 +11,12 @@ pub use graph::{hash_result, DepGraph, DepNodeIndex, TaskDepsRef, WorkProduct, W pub use query::DepGraphQuery; pub use serialized::{SerializedDepGraph, SerializedDepNodeIndex}; +use self::graph::{print_markframe_trace, MarkFrame}; use crate::ich::StableHashingContext; use rustc_data_structures::profiling::SelfProfilerRef; use rustc_session::Session; - use std::panic; - -use self::graph::{print_markframe_trace, MarkFrame}; +use tracing::instrument; pub trait DepContext: Copy { type Deps: Deps; | 
