pure-rust implementation of an mqtt5 client
```Bash
cargo run --example client
mosquitto_sub -t 'client/example/publish' --pretty -F '%J'
mosquitto_pub -t 'client/example/receive' -m "hello" -q 1 -V 5 -r -D publish message-expiry-interval 5
for i in {0..1000}; do mosquitto_pub -t 'client/example/receive' -m "$i" -q 1 -V 5 -r -D publish message-expiry-interval 5; echo "sending $i"; done ```