bazel: switch to rules_proto-5.3.0-21.7

Change-Id: Id22353b2ad383abb39ed9dca858447b3c020ea05
This commit is contained in:
Richard Patel 2023-01-24 13:49:54 +00:00 committed by Richard Patel
parent d435a44217
commit ea1e6cd07b
1 changed files with 10 additions and 6 deletions

View File

@ -116,12 +116,16 @@ go_repositories()
################################################################################
http_archive(
name = "com_google_protobuf",
sha256 = "930c2c3b5ecc6c9c12615cf5ad93f1cd6e12d0aba862b572e076259970ac3a53",
strip_prefix = "protobuf-3.21.12",
urls = ["https://github.com/protocolbuffers/protobuf/archive/v3.21.12.tar.gz"],
name = "rules_proto",
sha256 = "dc3fb206a2cb3441b485eb1e423165b231235a1ea9b031b4433cf7bc1fa460dd",
strip_prefix = "rules_proto-5.3.0-21.7",
urls = [
"https://github.com/bazelbuild/rules_proto/archive/refs/tags/5.3.0-21.7.tar.gz",
],
)
load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")
load("@rules_proto//proto:repositories.bzl", "rules_proto_dependencies", "rules_proto_toolchains")
protobuf_deps()
rules_proto_dependencies()
rules_proto_toolchains()