chore: Prepare 0.1.0 release (#234)

This commit is contained in:
Lucio Franco
2020-01-14 09:36:19 -05:00
committed by GitHub
parent 6ee2ed9b4f
commit f4ecf47428
7 changed files with 96 additions and 80 deletions
+2 -2
View File
@@ -113,12 +113,12 @@ name = "helloworld-client"
path = "src/client.rs"
[dependencies]
tonic = "0.1.0-beta.1"
tonic = "0.1.0"
prost = "0.6"
tokio = { version = "0.2", features = ["macros"] }
[build-dependencies]
tonic-build = "0.1.0-beta.1"
tonic-build = "0.1.0"
```
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: