#rpc #server-client #why

ripsy

RPC between Server/Client written in Rust

1 unstable release

0.1.0 Sep 7, 2023

#7 in #why

40 downloads per month

MIT/Apache

10KB
150 lines

Ripsy

RPC between Server/Client written in Rust

Why Ripsy?

RRPC (Rust Remote Procedure Call) is pronounced as ripsy, thus the name of this crate.

Example

client/main.rs

use shared::add;

#[tokio::main]
async fn main() {
    ripsy::client::init("http://localhost:3000");
    let r: Result<String, String> = add(2).await.unwrap();
    println!("{r:?}"); // Ok("2")
}

server/main.rs

use axum::routing::post;
use ripsy::Bincode;
use shared::add;

#[tokio::main]
async fn main() {
    let app = ripsy::ripsy!(add,);

    axum::Server::bind(&"0.0.0.0:3000".parse().unwrap())
        .serve(app.into_make_service())
        .await
        .unwrap();
}

shared/lib.rs

use ripsy::endpoint;

#[endpoint(mutation)]
pub async fn add(n: u32) -> Result<String, String> {
    if false {
        work()?; // ? works fine
    }
    Ok(n.to_string())
}

fn work() -> Result<(), String> { Err("err".to_string())  }

Dependencies

~0.7–14MB
~170K SLoC