https://github.com/danny-yamamoto/rust-grpc-greet
Rewrite go-connect-greet with Rust.
https://github.com/danny-yamamoto/rust-grpc-greet
grpc rust
Last synced: about 2 months ago
JSON representation
Rewrite go-connect-greet with Rust.
- Host: GitHub
- URL: https://github.com/danny-yamamoto/rust-grpc-greet
- Owner: danny-yamamoto
- Created: 2023-10-21T02:18:01.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-26T10:52:48.000Z (about 1 year ago)
- Last Synced: 2025-02-02T18:21:07.296Z (4 months ago)
- Topics: grpc, rust
- Language: Rust
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rust-grpc-greet
Rewrite go-connect-greet with Rust.```bash
# install asdf
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.13.1
asdf
. "$HOME/.asdf/asdf.sh"
asdf
# install grpcrl
asdf plugin add grpcurl
asdf list all grpcurl
asdf install grpcurl 1.8.8
asdf local grpcurl 1.8.8
# check api
grpcurl -plaintext localhost:50051 list
grpcurl -plaintext -d '{"name": "World"}' localhost:50051 hello.HelloService/SayHello
```asdf
- [docs](https://asdf-vm.com/guide/getting-started.html)