I've noticed that between 0.1.2 and the current master, ClientOptions added a Send constraint to the incoming/outgoing stores. I need this for a project, so at first I attempted to reference each of mqttc/mqtt3/netopts to this repository, but that seems to cause rustc to re-compile the packages, resulting in "type mismatch" errors when implementing the Store trait. There's probably a way around that, but I figure it may just be easier for me and others if a version 0.1.3 is published with the recent changes.
I've noticed that between 0.1.2 and the current master,
ClientOptions
added aSend
constraint to the incoming/outgoing stores. I need this for a project, so at first I attempted to reference each ofmqttc
/mqtt3
/netopts
to this repository, but that seems to cause rustc to re-compile the packages, resulting in "type mismatch" errors when implementing theStore
trait. There's probably a way around that, but I figure it may just be easier for me and others if a version 0.1.3 is published with the recent changes.