chore: Prepare 0.6.0 release (#811)

This commit is contained in:
Lucio Franco
2021-10-25 10:25:56 -04:00
committed by GitHub
parent 23c1392fb7
commit 2fe7131a23
12 changed files with 42 additions and 15 deletions
+3 -3
View File
@@ -113,12 +113,12 @@ name = "helloworld-client"
path = "src/client.rs"
[dependencies]
tonic = "0.5"
prost = "0.8"
tonic = "0.6"
prost = "0.9"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
[build-dependencies]
tonic-build = "0.5"
tonic-build = "0.6"
```
We include `tonic-build` as a useful way to incorporate the generation of our client and server gRPC code into the build process of our application. We will setup this build process now: