├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── proto └── calculator.proto └── src ├── client.rs └── main.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamsofcode-io/grpcalculator-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamsofcode-io/grpcalculator-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamsofcode-io/grpcalculator-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamsofcode-io/grpcalculator-rs/HEAD/README.md -------------------------------------------------------------------------------- /proto/calculator.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamsofcode-io/grpcalculator-rs/HEAD/proto/calculator.proto -------------------------------------------------------------------------------- /src/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamsofcode-io/grpcalculator-rs/HEAD/src/client.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamsofcode-io/grpcalculator-rs/HEAD/src/main.rs --------------------------------------------------------------------------------