rzmq 0.5.19

High performance, CPU and memory efficient, fully asynchronous, safe pure-Rust implementation of ZeroMQ (ØMQ) messaging with io_uring and TCP Cork acceleration on Linux.
Documentation
pub mod anonymous_ingress;
pub mod addressed_ingress;
pub mod distributor;
pub mod framing;
pub mod load_balancer;
pub mod outgoing_orchestrator;
pub mod pipe_coordinator;
pub mod ready_pipe_queue;
pub mod router;
pub mod trie;

pub(crate) use anonymous_ingress::AnonymousIngressEngine;
pub(crate) use addressed_ingress::AddressedIngressEngine;
pub(crate) use distributor::Distributor;
pub(crate) use framing::{FramingLatch, router_auto_encode, router_auto_decode, dealer_auto_encode, dealer_auto_decode};
pub(crate) use load_balancer::LoadBalancer;
pub(crate) use outgoing_orchestrator::OutgoingMessageOrchestrator;
pub(crate) use pipe_coordinator::WritePipeCoordinator;
pub(crate) use ready_pipe_queue::{ReadyPipeQueue, ReadyPipeSender, PipeMessageSender};
pub(crate) use router::RouterMap;
pub(crate) use trie::SubscriptionTrie;