mqtt-async-client-rs icon indicating copy to clipboard operation
mqtt-async-client-rs copied to clipboard

An MQTT client written in Rust

Results 10 mqtt-async-client-rs issues
Sort by recently updated
recently updated
newest added
trafficstars

Straight out of the box clone and build results in error[E0793]: reference to packed field is unaligned --> C:\Users\xxx.xxxx\.cargo\registry\src\index.crates.io-6f17d22bba15001f\ntapi-0.3.6\src\ntexapi.rs:2785:52 | 2785 | *tick_count.QuadPart_mut() = read_volatile(&(*USER_SHARED_DATA).u.TickCountQuad); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note:...

This change does two things: 1. Adds logic to drain `rx_io_requests` on shutdown, this ensures that all outgoing requests to the MQTT broken are processed by the IoTask before the...

Some words on my motivation for this PR: While using the TLS transport I found the library to continuously print the error: "IoTask: Socket disconnected" in my logs. The only...

I'm using this library from a web application used to control IoT devices. I would like to publish a message in response to a web call. The current API does...

Thank you for writing this crate it is very nice to use and perfectly fits my tokio driven IoT needs. It would be nice though if the ClientBuilder would implement...

As would have been useful for #13. Possible implemenation; a `rustls` feature flag (enabled by default) and an `openssl` feature flag (disabled by default) and a `Connect` trait with 2...

enhancement

I have an mqtt client which listens for certain messages, and [publishes responses](https://github.com/bobrippling/z2m-lights/blob/fd022e4/src/main.rs#L208-L213) when they're received. Currently when the messages are published, the runloop is then terminated by several errors:...