Skip to content

Commit

Permalink
added support to futures-task v0.3.31
Browse files Browse the repository at this point in the history
  • Loading branch information
PaoloPana authored and davidlattimore committed Oct 9, 2024
1 parent aa75913 commit 1334d25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fair_queue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ where
impl<S, T, K> Stream for FairQueue<S, K>
where
T: Send,
S: Stream<Item = T> + Send,
K: Eq + Hash + Unpin + Clone + Send + Sync,
S: Stream<Item = T> + Send + 'static,
K: Eq + Hash + Unpin + Clone + Send + Sync + 'static,
{
type Item = (K, T);

Expand Down

0 comments on commit 1334d25

Please sign in to comment.