26 个版本 (3 个稳定版本)

2.0.0 2022年2月2日
1.1.0 2020年11月21日
1.0.0 2020年10月31日
0.5.1 2020年10月16日
0.3.1 2020年7月23日

#32 in #smol

Download history 91/week @ 2024-03-30 16/week @ 2024-04-06

每月61次 下载

MIT 许可证

350KB
9K SLoC

lapin 与 smol 集成

此 crate 通过在 lapin 的内部操作和消费者代理中使用 smol 的执行器来集成 lapin 和 smol。

use lapinou::*;
use lapin::{Connection, ConnectionProperties, Result};

fn main() -> Result<()> {
    smol::block_on(async {
        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_smol()).await?; // Note the `with_smol()` here
        let channel = conn.create_channel().await?;

        // Rest of your program
    })
}

依赖项

~8–19MB
~290K SLoC