amq-protocol 8.3.1

AMQP specifications
Documentation
#![deny(missing_docs)]

//! # AMQP manipulation library
//!
//! amq-protocol is a library aiming at providing tools to help
//! implementing software using AMQP

/// Reexport of amq_protocol_tcp
pub use amq_protocol_tcp as tcp;
/// Reexport of amq_protocol_types
pub use amq_protocol_types as types;
/// Reexport of amq_protocol_uri
pub use amq_protocol_uri as uri;

/// Utility to handle SASL authentication with AMQP server
pub mod auth;
/// AMQP Frame handling utils
pub mod frame;
/// The AMQ Protocol implementation (Generated)
pub mod protocol;