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.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/vfs/src/lib.rs b/crates/vfs/src/lib.rs index caddd4e481..ff8a2b9673 100644 --- a/crates/vfs/src/lib.rs +++ b/crates/vfs/src/lib.rs @@ -63,7 +63,7 @@ pub use paths::{AbsPath, AbsPathBuf}; pub struct FileId(pub u32); /// safe because `FileId` is a newtype of `u32` -impl stdx::hash::IsEnabled for FileId {} +impl nohash_hasher::IsEnabled for FileId {} /// Storage for all files read by rust-analyzer. /// |