Skip to content

Commit

Permalink
Replace futures with futures-util in examples dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
tottoto committed Nov 18, 2023
1 parent d663cbf commit 2e331df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/tonic-key-value-store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ bytes = "1"
hyper = { version = "0.14.4", features = ["full"] }
prost = "0.11"
tokio = { version = "1.2.0", features = ["full"] }
futures = "0.3"
futures-util = { version = "0.3", default-features = false }
tokio-stream = { version = "0.1", features = ["sync", "net"] }
tonic = "0.9"
tower = { version = "0.4.5", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion examples/tonic-key-value-store/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use bytes::Bytes;
use clap::Parser;
use futures::StreamExt;
use futures_util::StreamExt;
use hyper::{
body::HttpBody,
header::{self, HeaderValue},
Expand Down

0 comments on commit 2e331df

Please sign in to comment.