From 50eb80c883ef568df61a6aff4a40b4e37dd46b5e Mon Sep 17 00:00:00 2001 From: royrustdev Date: Tue, 20 Sep 2022 09:39:30 +0530 Subject: [PATCH] reference latest `tarpc` version in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f7bc96a..2d0cdd5 100644 --- a/README.md +++ b/README.md @@ -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"] } ```