mq-bridge 0.2.21

An asynchronous message bridging library connecting Kafka, MQTT, AMQP, NATS, MongoDB, HTTP, and more.
Documentation
#[cfg(feature = "amqp")]
pub mod amqp;
#[cfg(feature = "aws")]
pub mod aws;
#[cfg(feature = "grpc")]
pub mod grpc;
#[cfg(feature = "http")]
pub mod http;
#[cfg(feature = "http")]
pub mod http_tls;
#[cfg(feature = "ibm-mq")]
pub mod ibm_mq;
#[cfg(feature = "ibm-mq")]
pub mod ibm_mq_tls;
#[cfg(feature = "kafka")]
pub mod kafka;
#[cfg(feature = "sqlx")]
pub mod mariadb;
#[cfg(feature = "mongodb")]
pub mod mongodb;
#[cfg(feature = "mongodb")]
pub mod mongodb_raw;
#[cfg(feature = "mqtt")]
pub mod mqtt;
#[cfg(feature = "sqlx")]
pub mod mysql;
#[cfg(feature = "nats")]
pub mod nats;
#[cfg(feature = "sqlx")]
pub mod postgres;
#[cfg(feature = "sqlx")]
pub mod sqlite;
pub mod tls_helpers;
#[cfg(feature = "websocket")]
pub mod websocket;
#[cfg(feature = "zeromq")]
pub mod zeromq;

pub mod file;
pub mod ipc;
pub mod logic_test;
pub mod memory;
// performance_static was just for internal optimiztion - not a real test

#[cfg(feature = "grpc")]
pub mod grpc_tls;
pub mod route;