ramqp 0.8.2

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
9
10
11
12
13
14
15
//! Public API (Phase 5): the `Client`/`Connection`/`Session` entry points and
//! `Producer`/`Consumer` handles, plus graceful lifecycle.

pub mod client;
pub mod connection;
pub mod consumer;
pub mod lifecycle;
pub mod producer;
pub mod session;

pub use client::ConnectionBuilder;
pub use connection::Connection;
pub use consumer::Consumer;
pub use producer::Producer;
pub use session::Session;