reference latest tarpc version in readme

This commit is contained in:
royrustdev
2022-09-20 09:39:30 +05:30
committed by Tim
parent 1f0c80d8c9
commit 50eb80c883

View File

@@ -67,7 +67,7 @@ Some other features of tarpc:
Add to your `Cargo.toml` dependencies:
```toml
tarpc = "0.29"
tarpc = "0.30"
```
The `tarpc::service` attribute expands to a collection of items that form an rpc service.
@@ -82,7 +82,7 @@ your `Cargo.toml`:
```toml
anyhow = "1.0"
futures = "0.3"
tarpc = { version = "0.29", features = ["tokio1"] }
tarpc = { version = "0.30", features = ["tokio1"] }
tokio = { version = "1.0", features = ["macros"] }
```