<div align="center">
<img src="logo.jpg" width="30%"></img>
[](https://docs.rs/lapin)
[](https://travis-ci.org/sozu-proxy/lapin)
[](https://crates.io/crates/lapin)
[](https://coveralls.io/github/sozu-proxy/lapin?branch=master)
[](https://deps.rs/repo/github/sozu-proxy/lapin)
[](LICENSE)
<strong>
A Rust AMQP client library.
</strong>
</div>
<br />
This project follows the [AMQP 0.9.1 specifications](https://www.rabbitmq.com/resources/specs/amqp0-9-1.pdf), targetting especially RabbitMQ.
## Feature switches
* `futures`: enable std::future::Future and async/await compatibility
* `native-tls` (*default*): enable amqps support through native-tls
* `openssl`: enable amqps support through openssl (preferred over native-tls when set)
* `rustls`: enable amqps support through rustls (preferred over openssl when set, uses rustls-native-certs by default)
* `rustls-native-certs`: same as rustls, be ensure we'll still use rustls-native-certs even if the default for rustls changes
* `rustls-webpki-roots-certs`: same as rustls but using webkit-roots instead of rustls-native-certs
## Example
> **Note**: To use async/await, enable the `futures` feature in your Cargo.toml.
```rust
use lapin::{
message::DeliveryResult, options::*, types::FieldTable, BasicProperties, Channel, Connection,
ConnectionProperties, ConsumerDelegate,
};
use log::info;
#[derive(Clone, Debug)]
struct Subscriber {
channel: Channel,
}
impl ConsumerDelegate for Subscriber {
fn on_new_delivery(&self, delivery: DeliveryResult) {
if let Ok(Some(delivery)) = delivery {
self.channel
.basic_ack(delivery.delivery_tag, BasicAckOptions::default())
.wait()
.expect("basic_ack");
}
}
}
fn main() {
env_logger::init();
let addr = std::env::var("AMQP_ADDR").unwrap_or_else(|_| "amqp://127.0.0.1:5672/%2f".into());
let conn = Connection::connect(&addr, ConnectionProperties::default())
.wait()
.expect("connection error");
info!("CONNECTED");
let channel_a = conn.create_channel().wait().expect("create_channel");
let channel_b = conn.create_channel().wait().expect("create_channel");
let queue = channel_a
.queue_declare(
"hello",
QueueDeclareOptions::default(),
FieldTable::default(),
)
.wait()
.expect("queue_declare");
info!("Declared queue {:?}", queue);
info!("will consume");
channel_b
.clone()
.basic_consume(
"hello",
"my_consumer",
BasicConsumeOptions::default(),
FieldTable::default(),
)
.wait()
.expect("basic_consume")
.set_delegate(Box::new(Subscriber { channel: channel_b }));
let payload = b"Hello world!";
loop {
channel_a
.basic_publish(
"",
"hello",
BasicPublishOptions::default(),
payload.to_vec(),
BasicProperties::default(),
)
.wait()
.expect("basic_publish");
}
}
```