From 4aad5afa216bdb39f518171888463667a4e4d1f4 Mon Sep 17 00:00:00 2001 From: Luke <94769656+lukem570@users.noreply.github.com> Date: Sat, 13 Jul 2024 09:12:05 -0400 Subject: [PATCH] fixed hello world and route guide tutorials (#1791) --- examples/helloworld-tutorial.md | 2 +- examples/routeguide-tutorial.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/helloworld-tutorial.md b/examples/helloworld-tutorial.md index 1977bfbf1..1ed2003e1 100644 --- a/examples/helloworld-tutorial.md +++ b/examples/helloworld-tutorial.md @@ -113,7 +113,7 @@ path = "src/client.rs" [dependencies] tonic = "0.12" -prost = "0.12" +prost = "0.13" tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] } [build-dependencies] diff --git a/examples/routeguide-tutorial.md b/examples/routeguide-tutorial.md index 06207b461..42a634cab 100644 --- a/examples/routeguide-tutorial.md +++ b/examples/routeguide-tutorial.md @@ -175,7 +175,7 @@ Edit `Cargo.toml` and add all the dependencies we'll need for this example: ```toml [dependencies] tonic = "0.12" -prost = "0.12" +prost = "0.13" tokio = { version = "1.0", features = ["rt-multi-thread", "macros", "sync", "time"] } tokio-stream = "0.1"