mosquitto-client-wrapper 0.3.1

Rust interface to the Mosquitto MQTT broker client. This is a fork of https://github.com/jsloth/mosquitto-client.
FROM rust:1.47

RUN apt-get update && apt-get install -y cmake clang  \
    && rm -rf /var/lib/apt/lists/*

WORKDIR app
COPY . .
RUN cargo test