# poster-rs using tokio This is a publish demo app using poster-rs with tokio runtime. Usage: ``` MQTTv5 client library written in Rust. Usage: tokio-pub [OPTIONS] --host --topic --message Options: --host Broker IP --port Broker port [default: 1883] --topic Topic --username Username --password Password --message Message --qos Quality of Service [default: 0] -h, --help Print help -V, --version Print version ``` Or simply via the cargo run: ``` cargo run --example tokio-pub -- --host 192.168.0.109 --topic example --message 'hello there :)' ```