#macro #trpc #router #rspc #server #api #trpc-rs

yanked trpc-rs-macros

Macros for trpc-rs. You don’t need to import this directly!

0.0.2 Jun 26, 2022
0.0.1 Jun 24, 2022

#7 in #rspc

27 downloads per month
Used in trpc-rs

MIT license

9KB
162 lines

Logo

rspc

🚧 Work In Progress 🚧

A blazing fast and easy to use tRPC-like server for Rust.

Website



Example

You define a rspc router and attach procedures to it like below. This will be very familiar if you have used tRPC or GraphQL before.

let router = <rspc::Router>::new()
    .query("version", |t| {
        t(|ctx, input: ()| "0.0.1")
    })
    .mutation("helloWorld", |t| {
        t(|ctx, input: ()| async { "Hello World!" })
    });

Features

  • Per Request Context - Great for database connection & authentication data
  • Middleware - With support for context switching
  • Merging routers - Great for separating code between files

Inspiration

This project is based off tRPC and was inspired by the bridge system Jamie Pine designed for Spacedrive. A huge thanks to everyone who helped inspire this project!

Dependencies

~2MB
~41K SLoC