Skip to content

Commit 1334d25

Browse files
PaoloPanadavidlattimore
authored andcommitted
added support to futures-task v0.3.31
1 parent aa75913 commit 1334d25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/fair_queue.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ where
8686
impl<S, T, K> Stream for FairQueue<S, K>
8787
where
8888
T: Send,
89-
S: Stream<Item = T> + Send,
90-
K: Eq + Hash + Unpin + Clone + Send + Sync,
89+
S: Stream<Item = T> + Send + 'static,
90+
K: Eq + Hash + Unpin + Clone + Send + Sync + 'static,
9191
{
9292
type Item = (K, T);
9393

0 commit comments

Comments
 (0)