1"""Definitions for loading transitive `@rules_rust//proto/protobuf` dependencies""" 2 3load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps") 4load("@rules_proto//proto:repositories.bzl", "rules_proto_dependencies", "rules_proto_toolchains") 5 6def rust_proto_protobuf_transitive_repositories(): 7 """Load transitive dependencies of the `@rules_rust//proto/protobuf` rules. 8 9 This macro should be called immediately after the `rust_protobuf_dependencies` macro. 10 """ 11 rules_proto_dependencies() 12 13 rules_proto_toolchains() 14 15 protobuf_deps() 16