We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
async-mutex
async-lock
1 parent 0ba9958 commit 02ca748Copy full SHA for 02ca748
Cargo.toml
@@ -24,7 +24,7 @@ log = "0.4.11"
24
25
async-trait = "0.1.42"
26
async-io = "1.3.1"
27
-async-mutex = "1.4.0"
+async-lock = "2.3.0"
28
async-executor = "1.4.0"
29
blocking = "1.0.2"
30
futures-lite = "1.11.2"
src/server/builder.rs
@@ -1,6 +1,6 @@
1
use async_executor::Executor;
2
use async_io::Async;
3
-use async_mutex::Mutex;
+use async_lock::Mutex;
4
use std::collections::HashSet;
5
use std::net::{SocketAddr, UdpSocket};
6
use std::path::Path;
src/server/server.rs
use log::trace;
use std::future::Future;
0 commit comments