Skip to content

Commit dcf737c

Browse files
author
Stjepan Glavina
committed
Update futures-lite
1 parent 98dc637 commit dcf737c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ event-listener = "2.5.1"
1818
[dev-dependencies]
1919
async-channel = "1.5.0"
2020
fastrand = "1.4.0"
21-
futures-lite = "1.10.1"
21+
futures-lite = "1.11.0"

tests/rwlock.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use std::sync::Arc;
44
use std::thread;
55

66
use async_lock::{RwLock, RwLockUpgradableReadGuard};
7-
use futures_lite::{future, FutureExt};
7+
use futures_lite::{future, prelude::*};
88

99
fn spawn<T: Send + 'static>(f: impl Future<Output = T> + Send + 'static) -> future::Boxed<T> {
1010
let (s, r) = async_channel::bounded(1);

0 commit comments

Comments
 (0)