Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame] | 1 | """Rust proto rules.""" |
2 | |||||
3 | load( | ||||
4 | "//proto/prost:defs.bzl", | ||||
5 | _rust_prost_library = "rust_prost_library", | ||||
6 | ) | ||||
7 | load( | ||||
8 | ":proto.bzl", | ||||
9 | _rust_grpc_library = "rust_grpc_library", | ||||
10 | _rust_proto_library = "rust_proto_library", | ||||
11 | ) | ||||
12 | |||||
13 | rust_proto_library = _rust_proto_library | ||||
14 | rust_grpc_library = _rust_grpc_library | ||||
15 | |||||
16 | rust_prost_library = _rust_prost_library |