Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update proto crates: protobuf to 2.8.2 and grpc-rust to 0.6.2 #310

Merged
merged 1 commit into from
Apr 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions examples/proto/helloworld/greeter_client/greeter_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
extern crate grpc;
extern crate helloworld_proto;

use grpc::ClientStubExt;
use std::env;
use std::str::FromStr;

Expand Down
31 changes: 13 additions & 18 deletions proto/raze/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -3,53 +3,48 @@ cargo-raze workspace build file.

DO NOT EDIT! Replaced on runs of cargo-raze
"""

package(default_visibility = ["//visibility:public"])

licenses([
"notice", # See individual crates for specific licenses
"notice" # See individual crates for specific licenses
])

alias(
name = "grpc",
actual = "@raze__grpc__0_4_0//:grpc",
actual = "@raze__grpc__0_6_2//:grpc",
)

alias(
name = "grpc_compiler",
actual = "@raze__grpc_compiler__0_4_0//:grpc_compiler",
actual = "@raze__grpc_compiler__0_6_2//:grpc_compiler",
)

alias(
# Extra aliased target, from raze configuration
# N.B.: The exact form of this is subject to change.
name = "cargo_bin_protoc_gen_rust_grpc",
actual = "@raze__grpc_compiler__0_4_0//:cargo_bin_protoc_gen_rust_grpc",
actual = "@raze__grpc_compiler__0_6_2//:cargo_bin_protoc_gen_rust_grpc",
)
alias(
name = "log",
actual = "@raze__log__0_4_6//:log",
)

alias(
name = "protobuf",
actual = "@raze__protobuf__1_6_0//:protobuf",
actual = "@raze__protobuf__2_8_2//:protobuf",
)

alias(
name = "protobuf_codegen",
actual = "@raze__protobuf_codegen__1_6_0//:protobuf_codegen",
actual = "@raze__protobuf_codegen__2_8_2//:protobuf_codegen",
)

alias(
# Extra aliased target, from raze configuration
# N.B.: The exact form of this is subject to change.
name = "cargo_bin_protoc_gen_rust",
actual = "@raze__protobuf_codegen__1_6_0//:cargo_bin_protoc_gen_rust",
actual = "@raze__protobuf_codegen__2_8_2//:cargo_bin_protoc_gen_rust",
)

alias(
name = "tls_api",
actual = "@raze__tls_api__0_1_20//:tls_api",
actual = "@raze__tls_api__0_1_22//:tls_api",
)

alias(
name = "tls_api_stub",
actual = "@raze__tls_api_stub__0_1_20//:tls_api_stub",
actual = "@raze__tls_api_stub__0_1_22//:tls_api_stub",
)
Loading