mesquitte-core 0.1.0

MQTT v3.1.1/v5.0 library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod ws_callback;
mod ws_stream;

pub mod server;

#[derive(Debug, thiserror::Error)]
pub enum Error {
    #[error("Io Error : {0}")]
    Io(#[from] std::io::Error),
    #[error("Missing tls config")]
    MissingTlsConfig,
    #[error("Wrong tls config: {0}")]
    Rustls(#[from] crate::server::rustls::Error),
}