28 个版本 (5 个稳定版)

2.0.0 2022年2月2日
1.1.0 2022年1月30日
1.0.0 2020年12月23日
0.3.1 2020年11月21日
0.1.3 2020年6月26日

#65 in #rabbitmq

Download history 1347/week @ 2024-03-25 1813/week @ 2024-04-01 1744/week @ 2024-04-08 1464/week @ 2024-04-15 1654/week @ 2024-04-22 1488/week @ 2024-04-29 1256/week @ 2024-05-06 1354/week @ 2024-05-13 1814/week @ 2024-05-20 1997/week @ 2024-05-27 1680/week @ 2024-06-03 1498/week @ 2024-06-10 1766/week @ 2024-06-17 1301/week @ 2024-06-24 1149/week @ 2024-07-01 1197/week @ 2024-07-08

5,662 个月下载量
用于 少于 10 crates

MIT 协议

340KB
9K SLoC

lapin 与 tokio 的集成

此 crate 通过在 lapin 的内部操作和消费者代理中使用 tokio 的 executor,集成了 lapin 与 tokio。

use tokio_amqp::*;
use lapin::{Connection, ConnectionProperties, Result};
use std::sync::Arc;
use tokio::runtime::Runtime;

async fn tokio_main() -> Result<()> {
    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().with_tokio()).await?; // Note the `with_tokio()` here
    let channel = conn.create_channel().await?;

    // Rest of your program
}

fn main() {
    let rt = Runtime::new().expect("failed to create runtime");
    rt.block_on(tokio_main()).expect("error");
}

依赖

~9–21MB
~328K SLoC