mq-bridge 0.2.19

An asynchronous message bridging library connecting Kafka, MQTT, AMQP, NATS, MongoDB, HTTP, and more.
Documentation
//  mq-bridge
//  © Copyright 2025, by Marco Mengelkoch
//  Licensed under MIT License, see License file for more details
//  git clone https://github.com/marcomq/mq-bridge

mod endpoint;
pub mod memory_transport;
pub mod transport;

#[cfg(unix)]
pub mod ipc_unix;
#[cfg(windows)]
pub mod ipc_windows;

// Re-export the main endpoint types for backward compatibility
pub use endpoint::{
    get_or_create_channel, get_or_create_response_channel, MemoryChannel, MemoryConsumer,
    MemoryPublisher, MemoryQueueConsumer, MemoryResponseChannel, MemorySubscriber,
};

// Made with Bob