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
@@ -180,7 +180,7 @@ Edit `Cargo.toml` and add all the dependencies we'll need for this example:
```toml
[dependencies]
tonic = "0.1.0-beta.1"
tonic = "0.1.0"
prost = "0.6"
futures-core = "0.3"
futures-util = "0.3"
@@ -192,7 +192,7 @@ serde_json = "1.0"
rand = "0.7"
[build-dependencies]
tonic-build = "0.1.0-beta.1"
tonic-build = "0.1.0"
```
Create a `build.rs` file at the root of your crate: