update dependencies

This commit is contained in:
Robin Mueller
2025-10-02 10:30:31 +02:00
parent 2efce69cda
commit cc67e1805d
2 changed files with 10 additions and 5 deletions
+5
View File
@@ -218,4 +218,9 @@ impl embedded_io_async::Write for TxAsync {
async fn write(&mut self, buf: &[u8]) -> Result<usize, Self::Error> {
Ok(self.write(buf).await)
}
/// This implementation does not do anything.
async fn flush(&mut self) -> Result<(), Self::Error> {
Ok(())
}
}