Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame] | 1 | """Legacy load locations for rust-protobuf rules""" |
Brian Silverman | cc09f18 | 2022-03-09 15:40:20 -0800 | [diff] [blame] | 2 | |
Brian Silverman | cc09f18 | 2022-03-09 15:40:20 -0800 | [diff] [blame] | 3 | load( |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame] | 4 | "//proto/protobuf:proto.bzl", |
| 5 | _RustProtoInfo = "RustProtoInfo", |
| 6 | _rust_grpc_library = "rust_grpc_library", |
| 7 | _rust_proto_library = "rust_proto_library", |
Brian Silverman | cc09f18 | 2022-03-09 15:40:20 -0800 | [diff] [blame] | 8 | ) |
| 9 | |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame] | 10 | RustProtoInfo = _RustProtoInfo |
| 11 | rust_proto_library = _rust_proto_library |
| 12 | rust_grpc_library = _rust_grpc_library |