bump deps

This commit is contained in:
Σrebe - Romain GERARD 2024-06-24 20:06:38 +02:00
parent 7f24217b64
commit f2404e79e1
No known key found for this signature in database
GPG key ID: 7A42B4B97E0332F4
6 changed files with 39 additions and 29 deletions

View file

@ -191,4 +191,4 @@ impl RuntimeProvider for TokioRuntimeProviderWithSoMark {
Box::pin(socket)
}
}
}

View file

@ -1316,4 +1316,4 @@ async fn main() {
}
tokio::signal::ctrl_c().await.unwrap();
}
}

View file

@ -152,7 +152,8 @@ impl UdpStream {
keys_to_delete,
};
let pending_notification = unsafe { std::mem::transmute(s.io.has_data_to_read.notified()) };
let pending_notification =
unsafe { std::mem::transmute::<Notified<'_>, Notified<'static>>(s.io.has_data_to_read.notified()) };
s.pending_notification = Some(pending_notification);
(s, io)