Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/vfs/src/lib.rs')
-rw-r--r--crates/vfs/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/vfs/src/lib.rs b/crates/vfs/src/lib.rs
index 3feca512e5..50e388d780 100644
--- a/crates/vfs/src/lib.rs
+++ b/crates/vfs/src/lib.rs
@@ -52,12 +52,12 @@ pub use crate::{
anchored_path::{AnchoredPath, AnchoredPathBuf},
vfs_path::VfsPath,
};
-use indexmap::{map::Entry, IndexMap};
+use indexmap::{IndexMap, map::Entry};
pub use paths::{AbsPath, AbsPathBuf};
use rustc_hash::FxHasher;
use stdx::hash_once;
-use tracing::{span, Level};
+use tracing::{Level, span};
/// Handle to a file in [`Vfs`]
///