Use Fx* variants of HashMap and HashSet everywhere in Zed (#7481)

Release Notes:

- N/A
This commit is contained in:
Kirill Bulatov
2024-02-07 09:45:37 +02:00
committed by GitHub
parent 7939673a7d
commit eb236302c2
27 changed files with 96 additions and 102 deletions
+1 -1
View File
@@ -5,13 +5,13 @@ use client::{
user::{User, UserStore},
Client, Subscription, TypedEnvelope, UserId,
};
use collections::HashSet;
use futures::lock::Mutex;
use gpui::{
AppContext, AsyncAppContext, Context, EventEmitter, Model, ModelContext, Task, WeakModel,
};
use rand::prelude::*;
use std::{
collections::HashSet,
ops::{ControlFlow, Range},
sync::Arc,
};