Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/harmony-development/hrpc-rs
- Owner: harmony-development
- License: mit
- Created: 2021-01-27T14:54:33.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-04-30T14:36:57.000Z (over 2 years ago)
- Last Synced: 2024-11-17T13:50:22.787Z (about 2 months ago)
- Language: Rust
- Homepage:
- Size: 8.65 MB
- Stars: 24
- Watchers: 3
- Forks: 1
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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!