Skip to content

Commit

Permalink
Merge pull request #35 from bloq/refresh
Browse files Browse the repository at this point in the history
Refresh
  • Loading branch information
jgarzik authored Mar 29, 2024
2 parents 57be6e3 + 1d27b50 commit 0c9bb81
Show file tree
Hide file tree
Showing 6 changed files with 179 additions and 11 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.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[workspace]
resolver = "2"

members = [
"memds-cli",
Expand Down
4 changes: 2 additions & 2 deletions memds-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
name = "memds-cli"
version = "0.2.0"
authors = ["Jeff Garzik <[email protected]>"]
edition = "2018"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
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"
4 changes: 2 additions & 2 deletions memds-proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
name = "memds-proto"
version = "0.2.0"
authors = ["Jeff Garzik <[email protected]>"]
edition = "2018"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[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
4 changes: 2 additions & 2 deletions memds-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
name = "memds-server"
version = "0.2.0"
authors = ["Jeff Garzik <[email protected]>"]
edition = "2018"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[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 0c9bb81

Please sign in to comment.