Update client_manager.rs
swapped lock type for tokio lock
This commit is contained in:
parent
77f4bf5f08
commit
ff85d1c28b
|
|
@ -2,7 +2,7 @@ use std::collections::HashMap;
|
|||
use std::sync::Arc;
|
||||
|
||||
use futures::future::{join_all, select};
|
||||
use futures::lock::Mutex;
|
||||
use tokio::sync::Mutex;
|
||||
use tokio::select;
|
||||
|
||||
use tokio::sync::mpsc::{channel, Receiver, Sender};
|
||||
|
|
|
|||
Loading…
Reference in New Issue