rpc-rs 0.1.1

A blazingly fast, lightweight, and type-safe RPC/IPC framework for Rust and Web/Tauri-based applications, based on `specta`.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # rpc-rs
//! 
//! A simple IPC/RPC framework for Rust and TypeScript,
//! built for Tauri and web apps.

#![warn(missing_docs)]
#![feature(associated_type_defaults, trait_alias, async_closure)]

pub mod macros;
pub mod module;
pub mod proc;
pub mod router;
pub mod util;

pub use router::{Router, Method};
pub use module::{Module, ModuleBuilder};