flowsdk 0.5.3

Safety-first, realistic, behavior-predictable messaging SDK for MQTT and more.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-License-Identifier: MPL-2.0

// When building with the OpenSSL QUIC backend (fork), alias the renamed crates
// back to the standard names so all downstream code using `quinn::` and
// `quinn_proto::` works transparently.  LTO strips the unused mainstream quinn
// symbols from the release-small binary.
#[cfg(feature = "quic-openssl")]
extern crate quinn_openssl as quinn;
#[cfg(feature = "quic-proto-openssl")]
extern crate quinn_proto_openssl as quinn_proto;

pub mod mqtt_client;
pub mod mqtt_serde;
pub mod mqtt_session;
pub mod priority_queue;