bump dependencies

This commit is contained in:
Robin Appelman 2024-05-07 22:00:16 +02:00
commit f472cc54ef
4 changed files with 241 additions and 215 deletions

View file

@ -12,6 +12,7 @@ pub async fn mqtt_stream(
client.subscribe("tele/+/SENSOR", QoS::AtMostOnce).await?;
client.subscribe("stat/+/RESULT", QoS::AtMostOnce).await?;
client.subscribe("stat/+/STATUS2", QoS::AtMostOnce).await?;
client.subscribe("rflink/msg", QoS::AtMostOnce).await?;
let stream = event_loop_to_stream(event_loop).filter_map(|event| match event {
Ok(Event::Incoming(Packet::Publish(message))) => Some(Ok(message)),