ramqp 0.8.1

Async AMQP 1.0 client for Rust on tokio — connects to RabbitMQ 4.x, ActiveMQ Artemis, and other AMQP 1.0 brokers.
Documentation
1
2
3
4
5
6
7
8
//! Connection runtime: the client's single-owner driver task, built on the
//! role-neutral negotiation/mux/heartbeat helpers from `ramqp-core`.

// Role-neutral pieces live in ramqp-core; re-export them so existing
// `crate::connection::...` / `ramqp::connection::...` paths keep resolving.
pub use ramqp_core::connection::{heartbeat, mux, negotiate};

pub mod driver;