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
@@ -180,8 +180,8 @@ Edit `Cargo.toml` and add all the dependencies we'll need for this example:
```toml
[dependencies]
tonic = "0.5"
prost = "0.8"
tonic = "0.6"
prost = "0.9"
futures-core = "0.3"
futures-util = "0.3"
tokio = { version = "1.0", features = ["rt-multi-thread", "macros", "sync", "time"] }
@@ -193,7 +193,7 @@ serde_json = "1.0"
rand = "0.7"
[build-dependencies]
tonic-build = "0.5"
tonic-build = "0.6"
```
Create a `build.rs` file at the root of your crate: