Use collections::{HashMap, HashSet} instead of its std:: counterpart (#7502)
This commit is contained in:
parent
c322179bb9
commit
83cffdde1f
19 changed files with 36 additions and 42 deletions
|
@ -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,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue