ramqp 0.6.6

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
//! Observability contracts (Phase 0, WP-0.4): a pluggable [`Metrics`] trait and
//! a connection [`event`] stream, usable without the `tracing` ecosystem.

pub mod event;
pub mod metrics;
pub mod wiring;

pub use event::{ConnectionEvent, ConnectionState, EventBus};
pub use metrics::{Metrics, NoopMetrics, SharedMetrics, noop_metrics};