grpc_getting_started icon indicating copy to clipboard operation
grpc_getting_started copied to clipboard

'@com_google_protobuf//:cc_toolchain' does not have mandatory provider 'ProtoInfo'

Open tigerquoll opened this issue 4 years ago • 1 comments

Possibly caused by https://github.com/bazelbuild/bazel/issues/12887

tigerquoll avatar May 21 '21 02:05 tigerquoll

This has been fixed in the rules_proto repository. Change the http_archive to get the latest rules_proto will fix the error:

http_archive(
    name = "rules_proto",
    strip_prefix = "rules_proto-f7a30f6f80006b591fa7c437fe5a951eb10bcbcf",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_proto/archive/f7a30f6f80006b591fa7c437fe5a951eb10bcbcf.tar.gz",
        "https://github.com/bazelbuild/rules_proto/archive/f7a30f6f80006b591fa7c437fe5a951eb10bcbcf.tar.gz",
    ],
)

derdrdirk avatar May 31 '21 18:05 derdrdirk