Skip to content

Commit 2ee4637

Browse files
jayvdblink2xt
authored andcommitted
Replace async-mutex with async-lock
1 parent bfc46d8 commit 2ee4637

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

yerpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ log = "0.4.16"
2424
futures = "0.3.21"
2525
futures-util = "0.3.21"
2626
async-channel = "1.6.1"
27-
async-mutex = "1.4.0"
27+
async-lock = "3.4.0"
2828

2929
# type generating dependencies
3030
typescript-type-def = { version = "0.5.3", features = ["json_value"] }

yerpc/src/requests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use async_mutex::Mutex;
1+
use async_lock::Mutex;
22
use futures::channel::oneshot;
33
use futures_util::{Future, Sink};
44
use serde::Serialize;

0 commit comments

Comments
 (0)