Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/harmony-development/hrpc-rs

hRPC implementation in Rust.
https://github.com/harmony-development/hrpc-rs

Last synced: about 1 month ago
JSON representation

hRPC implementation in Rust.

Awesome Lists containing this project

README

        

[![crates.io](https://img.shields.io/crates/v/hrpc)](https://crates.io/crates/hrpc) [![release docs](https://img.shields.io/docsrs/hrpc)](https://docs.rs/hrpc) [![docs](https://img.shields.io/badge/docs-master-blue)](https://harmonyapp.io/hrpc-rs)

# hrpc-rs

This repo contains an implementation of [hRPC](https://github.com/harmony-development/hrpc) in Rust:
- `crates/hrpc` contains generic server / client code and transports,
- `crates/hrpc-build` is contains codegen code that generates client or server code,
- `examples/interop` is used to test the implementation against itself and other servers.
- `examples` contains commented examples.
- To run an example's server: `cargo run --package example_name --bin server`
- To run an example's client: `cargo run --package example_name --bin client`

## Getting started

Check out the [chat](./examples/chat) example!