Skip to content

Commit ca82b7c

Browse files
authored
Merge pull request #1 from bazelbuild/master
Update proto crates: protobuf to 2.8.2 and grpc-rust to 0.6.2 (bazelbuild#310)
2 parents 1b4ea70 + 8d3cb68 commit ca82b7c

File tree

96 files changed

+2357
-2233
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+2357
-2233
lines changed

examples/proto/helloworld/greeter_client/greeter_client.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
extern crate grpc;
1616
extern crate helloworld_proto;
1717

18+
use grpc::ClientStubExt;
1819
use std::env;
1920
use std::str::FromStr;
2021

proto/raze/BUILD

Lines changed: 13 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,53 +3,48 @@ cargo-raze workspace build file.
33
44
DO NOT EDIT! Replaced on runs of cargo-raze
55
"""
6-
76
package(default_visibility = ["//visibility:public"])
87

98
licenses([
10-
"notice", # See individual crates for specific licenses
9+
"notice" # See individual crates for specific licenses
1110
])
12-
1311
alias(
1412
name = "grpc",
15-
actual = "@raze__grpc__0_4_0//:grpc",
13+
actual = "@raze__grpc__0_6_2//:grpc",
1614
)
17-
1815
alias(
1916
name = "grpc_compiler",
20-
actual = "@raze__grpc_compiler__0_4_0//:grpc_compiler",
17+
actual = "@raze__grpc_compiler__0_6_2//:grpc_compiler",
2118
)
22-
2319
alias(
2420
# Extra aliased target, from raze configuration
2521
# N.B.: The exact form of this is subject to change.
2622
name = "cargo_bin_protoc_gen_rust_grpc",
27-
actual = "@raze__grpc_compiler__0_4_0//:cargo_bin_protoc_gen_rust_grpc",
23+
actual = "@raze__grpc_compiler__0_6_2//:cargo_bin_protoc_gen_rust_grpc",
24+
)
25+
alias(
26+
name = "log",
27+
actual = "@raze__log__0_4_6//:log",
2828
)
29-
3029
alias(
3130
name = "protobuf",
32-
actual = "@raze__protobuf__1_6_0//:protobuf",
31+
actual = "@raze__protobuf__2_8_2//:protobuf",
3332
)
34-
3533
alias(
3634
name = "protobuf_codegen",
37-
actual = "@raze__protobuf_codegen__1_6_0//:protobuf_codegen",
35+
actual = "@raze__protobuf_codegen__2_8_2//:protobuf_codegen",
3836
)
39-
4037
alias(
4138
# Extra aliased target, from raze configuration
4239
# N.B.: The exact form of this is subject to change.
4340
name = "cargo_bin_protoc_gen_rust",
44-
actual = "@raze__protobuf_codegen__1_6_0//:cargo_bin_protoc_gen_rust",
41+
actual = "@raze__protobuf_codegen__2_8_2//:cargo_bin_protoc_gen_rust",
4542
)
46-
4743
alias(
4844
name = "tls_api",
49-
actual = "@raze__tls_api__0_1_20//:tls_api",
45+
actual = "@raze__tls_api__0_1_22//:tls_api",
5046
)
51-
5247
alias(
5348
name = "tls_api_stub",
54-
actual = "@raze__tls_api_stub__0_1_20//:tls_api_stub",
49+
actual = "@raze__tls_api_stub__0_1_22//:tls_api_stub",
5550
)

0 commit comments

Comments
 (0)