Remove extern crate tracing.

`use` is a nicer way of doing things.
This commit is contained in:
Nicholas Nethercote
2024-05-06 13:35:41 +10:00
parent 351c0fa2a3
commit 55b6ff8e41
7 changed files with 6 additions and 4 deletions

View File

@@ -70,12 +70,12 @@
//! aren't needed anymore.
use crate::fx::{FxHashMap, FxHashSet};
use std::cell::Cell;
use std::collections::hash_map::Entry;
use std::fmt::Debug;
use std::hash;
use std::marker::PhantomData;
use tracing::debug;
mod graphviz;