Skip to content

Latest commit

 

History

History
45 lines (28 loc) · 762 Bytes

README.md

File metadata and controls

45 lines (28 loc) · 762 Bytes

grpcalculator-rs

This is the companion project to the Dreams of Code YouTube video on Rust and gRPC with Tonic

Please see the linked video for more information.

Requirements

Rust

In order to run this code, you'll need at least Rust 1.76 installed on your system.

Protoc

As well as rust, you'll also need the protobuf compiler as well.

Arch

pacman -S protobuf

macOS

brew install protobuf

Running

This project contains two binaries, a server and a client.

Server

cargo run --bin server

Client

cargo run --bin client

Frontend

There is a companion frontend project that goes with this code found here