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.
1 parent a93ca6d commit cf8ca1dCopy full SHA for cf8ca1d
Cargo.toml
@@ -21,7 +21,7 @@ tokio03 = ["tokio03-crate"]
21
[dependencies]
22
async-channel = "^1.5"
23
async-executor = "^1.4"
24
-async-mutex = "^1.4"
+async-lock = "^2.5"
25
blocking = "^1.0"
26
futures-lite = "^1.0"
27
num_cpus = "^1.13"
src/threading.rs
@@ -1,6 +1,6 @@
1
use crate::Task;
2
use async_channel::{Receiver, Sender};
3
-use async_mutex::Mutex;
+use async_lock::Mutex;
4
use futures_lite::future;
5
use once_cell::sync::OnceCell;
6
use std::{io, thread};
0 commit comments