Skip to content

Rust MQTT library based on the OASIS MQTT Version 5.0 Standard (WIP)

Notifications You must be signed in to change notification settings

tolumide-ng/hivemqtt

Repository files navigation

HiveMQTT

MQTT5.0

Plans

  • Protocol Support
    • MQTT 3.1.1
    • MQTT 5.0 (In Progress)
    • TLS/TCP
    • IPV6
  • All MQTT Packet Support (In Progress)
  • Implement Display for Property
  • Tests
  • no_std support
  • Integrate WASM for easy compiling to Javascript/Typescript/Node.js environments
  • Easy internal utility for converting -> to string and vice versal (from terminal tool?) - for debugging
  • Samples for easy learning
  • Move bytes length validation/parsing into the trait, and update the trait's secondary properties

Notes to users:

AsyncReadExt + AsyncWriteExt works fine with async-std, and smol runtime users. However users of tokio, would need to add tokio-util to ensure compatibility

tokio-util = { version = "0.7.13", features= ["compat"]}
let stream = TcpStream::connect("example.com:80").await.unwrap();
let stream = stream.compat();
-->>

About

Rust MQTT library based on the OASIS MQTT Version 5.0 Standard (WIP)

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages