#rpc-framework #microservices #amqp #protobuf #lapin #handler #built

kanin

An RPC microservice framework for AMQP, protobuf and Rust built on lapin (https://github.com/amqp-rs/lapin)

27 releases (breaking)

0.32.1 Apr 24, 2024
0.31.0 Mar 25, 2024
0.26.0 Oct 24, 2023
0.22.2 Apr 18, 2023
0.17.0 Jul 25, 2022

#1298 in Network programming

Download history 76/week @ 2024-07-16 15/week @ 2024-07-23 72/week @ 2024-07-30 7/week @ 2024-08-06 57/week @ 2024-08-13 97/week @ 2024-08-20 114/week @ 2024-08-27 85/week @ 2024-09-03 59/week @ 2024-09-10 33/week @ 2024-09-17 84/week @ 2024-09-24 7/week @ 2024-10-01 37/week @ 2024-10-08 47/week @ 2024-10-15 3/week @ 2024-10-22

90 downloads per month

MIT/Apache

81KB
1.5K SLoC

🐰 kanin

Crates.io version Documentation status

A framework for AMQP built on top of lapin that makes it easy to create RPC microservices in Rust 🦀, using Protobuf.

Usage

Run cargo add kanin to add kanin to your Cargo.toml.

mod protobuf;

use kanin::{extract::Msg, App};
use protobuf::echo::{EchoRequest, EchoResponse};

async fn echo(Msg(request): Msg<EchoRequest>) -> EchoResponse {
    EchoResponse::success(request.value)
}

#[tokio::main]
async fn main() -> kanin::Result<()> {
    App::new(())
        .handler("my_routing_key", echo)
        .run("amqp_addr")
        .await
}

See the documentation for examples and more specific usage, or see the /minimal_example folder in this repo.

Testing

To run tests, install just and Docker (you need docker-compose).

Then, simply run just test, which will launch a RabbitMQ instance in a container that the tests will connect to.

Dependencies

~13–24MB
~359K SLoC