From 07d2f9825fae5b94322044719f3e18ecd4241e0a Mon Sep 17 00:00:00 2001 From: 16yuki0702 Date: Wed, 3 Feb 2021 01:22:17 +0900 Subject: [PATCH] Fix helloworld tutorial. (#546) updated tutorial to use tokio 1.x. --- examples/helloworld-tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/helloworld-tutorial.md b/examples/helloworld-tutorial.md index 3153483..f72386f 100644 --- a/examples/helloworld-tutorial.md +++ b/examples/helloworld-tutorial.md @@ -115,7 +115,7 @@ path = "src/client.rs" [dependencies] tonic = "0.4" prost = "0.7" -tokio = { version = "0.2", features = ["macros"] } +tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] } [build-dependencies] tonic-build = "0.4"