We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98dc637 commit dcf737cCopy full SHA for dcf737c
Cargo.toml
@@ -18,4 +18,4 @@ event-listener = "2.5.1"
18
[dev-dependencies]
19
async-channel = "1.5.0"
20
fastrand = "1.4.0"
21
-futures-lite = "1.10.1"
+futures-lite = "1.11.0"
tests/rwlock.rs
@@ -4,7 +4,7 @@ use std::sync::Arc;
4
use std::thread;
5
6
use async_lock::{RwLock, RwLockUpgradableReadGuard};
7
-use futures_lite::{future, FutureExt};
+use futures_lite::{future, prelude::*};
8
9
fn spawn<T: Send + 'static>(f: impl Future<Output = T> + Send + 'static) -> future::Boxed<T> {
10
let (s, r) = async_channel::bounded(1);
0 commit comments