[![API Docs](https://docs.rs/lapin/badge.svg)](https://docs.rs/lapin) [![Build Status](https://travis-ci.org/CleverCloud/lapin.svg?branch=master)](https://travis-ci.org/CleverCloud/lapin) [![Downloads](https://img.shields.io/crates/d/lapin.svg)](https://crates.io/crates/lapin) [![Coverage Status](https://coveralls.io/repos/github/CleverCloud/lapin/badge.svg?branch=master)](https://coveralls.io/github/CleverCloud/lapin?branch=master) [![Dependency Status](https://deps.rs/repo/github/CleverCloud/lapin/status.svg)](https://deps.rs/repo/github/CleverCloud/lapin) [![LICENSE](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE) A Rust AMQP client library.


This project follows the AMQP 0.9.1 specifications, targeting especially RabbitMQ.

Feature switches

Integration with async-std

Integration with async-std is provided by the async-amqp crate.

Integration with smol

Integration with smol is provided by the lapinou crate.

Integration with tokio

Integration with tokio is provided by the tokio-amqp crate.

Example

```rust use futuresexecutor::{LocalPool, ThreadPool}; use futuresutil::stream::StreamExt; use lapin::{ options::*, publisher_confirm::Confirmation, types::FieldTable, BasicProperties, Connection, ConnectionProperties, Result, }; use log::info;

fn main() -> Result<()> { if std::env::var("RUSTLOG").iserr() { std::env::setvar("RUSTLOG", "info"); }

env_logger::init();

let addr = std::env::var("AMQP_ADDR").unwrap_or_else(|_| "amqp://127.0.0.1:5672/%2f".into());
let executor = ThreadPool::new()?;

LocalPool::new().run_until(async {
    let conn = Connection::connect(
        &addr,
        ConnectionProperties::default().with_default_executor(8),
    )
    .await?;

    info!("CONNECTED");

    let channel_a = conn.create_channel().await?;
    let channel_b = conn.create_channel().await?;

    let queue = channel_a
        .queue_declare(
            "hello",
            QueueDeclareOptions::default(),
            FieldTable::default(),
        )
        .await?;

    info!("Declared queue {:?}", queue);

    let mut consumer = channel_b
        .basic_consume(
            "hello",
            "my_consumer",
            BasicConsumeOptions::default(),
            FieldTable::default(),
        )
        .await?;
    executor.spawn_ok(async move {
        info!("will consume");
        while let Some(delivery) = consumer.next().await {
            let (channel, delivery) = delivery.expect("error in consumer");
            channel
                .basic_ack(delivery.delivery_tag, BasicAckOptions::default())
                .await
                .expect("ack");
        }
    });

    let payload = b"Hello world!";

    loop {
        let confirm = channel_a
            .basic_publish(
                "",
                "hello",
                BasicPublishOptions::default(),
                payload.to_vec(),
                BasicProperties::default(),
            )
            .await?
            .await?;
        assert_eq!(confirm, Confirmation::NotRequested);
    }
})

} ```