embedded-mqtt 0.1.0

no_std encoder/decoder for MQTT 3.1.1 protocol packets for embedded devices.
Documentation
#![no_std]

#[cfg(any(feature = "std", test))]
#[macro_use]
extern crate std;
#[cfg(test)]
extern crate rayon;

extern crate byteorder;

#[macro_use]
extern crate bitfield;

#[macro_use]
pub mod status;
pub mod error;

pub mod codec;

pub mod packet;
pub mod fixed_header;
pub mod variable_header;
pub mod payload;

pub mod qos;