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
17KB
141 lines
metaxy
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
Related crates
metaxy-macro— the proc macrosmetaxy-cli— TypeScript codegen CLI
License
MIT OR Apache-2.0
Dependencies
~12–17MB
~221K SLoC