You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/helloworld-tutorial.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -112,12 +112,12 @@ name = "helloworld-client"
112
112
path = "src/client.rs"
113
113
114
114
[dependencies]
115
-
tonic = "0.12"
115
+
tonic = "0.13"
116
116
prost = "0.13"
117
117
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
118
118
119
119
[build-dependencies]
120
-
tonic-build = "0.12"
120
+
tonic-build = "0.13"
121
121
```
122
122
123
123
We include `tonic-build` as a useful way to incorporate the generation of our client and server gRPC code into the build process of our application. We will setup this build process now:
0 commit comments