We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bd9549 commit 93d31c1Copy full SHA for 93d31c1
examples/tonic-key-value-store/Cargo.toml
@@ -11,7 +11,7 @@ bytes = "1"
11
hyper = { version = "0.14.4", features = ["full"] }
12
prost = "0.11"
13
tokio = { version = "1.2.0", features = ["full"] }
14
-futures = "0.3"
+futures-util = { version = "0.3", default-features = false }
15
tokio-stream = { version = "0.1", features = ["sync", "net"] }
16
tonic = "0.9"
17
tower = { version = "0.5", features = ["full"] }
examples/tonic-key-value-store/src/main.rs
@@ -5,7 +5,7 @@ fn main() {
5
/*
6
use bytes::Bytes;
7
use clap::Parser;
8
-use futures::StreamExt;
+use futures_util::StreamExt;
9
use hyper::{
10
body::HttpBody,
header::{self, HeaderValue},
0 commit comments