2 releases

Uses new Rust 2024

new 0.1.4 Feb 28, 2026
0.1.3 Feb 25, 2026

#2173 in Web programming

29 downloads per month

MIT/Apache

17KB
141 lines

metaxy

Crates.io docs.rs License: MIT OR Apache-2.0

End-to-end typesafe RPC between Rust lambdas on Vercel and any TypeScript frontend.

This is the main entry point — a facade crate that re-exports metaxy-macro proc macros together with all runtime dependencies.

Quick Start

[dependencies]
metaxy = "0.1"
serde = { version = "1", features = ["derive"] }
use metaxy::rpc_query;

#[rpc_query]
async fn hello(name: String) -> String {
    format!("Hello, {}!", name)
}

Documentation

Full documentation: metaxy-demo.vercel.app/docs

License

MIT OR Apache-2.0

Dependencies

~12–17MB
~221K SLoC