From 0c5e67c9080edcd60eed466ee85f3d10a3ab7be1 Mon Sep 17 00:00:00 2001 From: Matt Date: Mon, 3 Jun 2024 22:58:22 +1000 Subject: [PATCH] Fix protobuf generated srcs to include all sources (#2676) --- proto/protobuf/proto.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/protobuf/proto.bzl b/proto/protobuf/proto.bzl index e3ef70e5b3..959d0c1c90 100644 --- a/proto/protobuf/proto.bzl +++ b/proto/protobuf/proto.bzl @@ -233,7 +233,7 @@ def _rust_proto_compile(protos, descriptor_sets, imports, crate_name, ctx, is_gr ), output_hash = output_hash, ) - providers.append(OutputGroupInfo(rust_generated_srcs = [lib_rs])) + providers.append(OutputGroupInfo(rust_generated_srcs = srcs)) return providers def _rust_protogrpc_library_impl(ctx, is_grpc):