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
|
@ -7,6 +7,7 @@ license = "GPL-3.0-or-later"
|
|||
|
||||
[dependencies]
|
||||
anyhow.workspace = true
|
||||
collections.workspace = true
|
||||
futures.workspace = true
|
||||
indoc.workspace = true
|
||||
lazy_static.workspace = true
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
use anyhow::Context;
|
||||
use collections::HashMap;
|
||||
use futures::{channel::oneshot, Future, FutureExt};
|
||||
use lazy_static::lazy_static;
|
||||
use parking_lot::{Mutex, RwLock};
|
||||
use std::{collections::HashMap, marker::PhantomData, ops::Deref, sync::Arc, thread};
|
||||
use std::{marker::PhantomData, ops::Deref, sync::Arc, thread};
|
||||
use thread_local::ThreadLocal;
|
||||
|
||||
use crate::{connection::Connection, domain::Migrator, util::UnboundedSyncSender};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue