Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bazelversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.7.2
4.2.1
6 changes: 3 additions & 3 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_file"
# rules_cc defines rules for generating C++ code from Protocol Buffers.

# rules_proto defines abstract rules for building Protocol Buffers.
hash = "97d8af4"
release = "4.0.0"
http_archive(
name = "rules_proto",
urls = [
"https://github.com/bazelbuild/rules_proto/tarball/" + hash,
"https://github.com/bazelbuild/rules_proto/archive/refs/tags/" + release + ".tar.gz",
],
type = "tar.gz",
strip_prefix = "bazelbuild-rules_proto-" + hash,
strip_prefix = "rules_proto-" + release,
)
load("@rules_proto//proto:repositories.bzl", "rules_proto_dependencies", "rules_proto_toolchains")
rules_proto_dependencies()
Expand Down