Skip to content

Commit

Permalink
refresh grpcio to v0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jgarzik committed Mar 29, 2024
1 parent 719e2ae commit 1d27b50
Show file tree
Hide file tree
Showing 5 changed files with 175 additions and 8 deletions.
175 changes: 171 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion memds-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ edition = "2021"
memds-proto = { path = "../memds-proto" }
clap = "3"
futures = "0.1"
grpcio = { version = "0.4", features = ["openssl"] }
grpcio = { version = "0.5", features = ["openssl"] }
protobuf = "~2"
log = "0.4"
2 changes: 1 addition & 1 deletion memds-proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2021"

[dependencies]
futures = "0.1"
grpcio = { version = "0.4", features = ["openssl"] }
grpcio = { version = "0.5", features = ["openssl"] }
protobuf = "~2"
tokio = { version = "0.2", features = ["full"] }
tokio-util = { version = "0.2", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion memds-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2021"
[dependencies]
memds-proto = { path = "../memds-proto" }
futures = "0.1"
grpcio = { version = "0.4", features = ["openssl"] }
grpcio = { version = "0.5", features = ["openssl"] }
protobuf = "~2"
log = "0.4"
clap = "3"
Expand Down
2 changes: 1 addition & 1 deletion memds-server/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ fn main() {
.build()
.unwrap();
server.start();
for &(ref host, port) in server.bind_addrs() {
for (host, port) in server.bind_addrs() {
println!("listening on {}:{}", host, port);
}
let (tx, rx) = oneshot::channel();
Expand Down

0 comments on commit 1d27b50

Please sign in to comment.