Skip to content

Commit

Permalink
build(bazel): update workspace file to work with protobuf v29
Browse files Browse the repository at this point in the history
  • Loading branch information
scotthart committed Dec 2, 2024
1 parent 95ae5a2 commit c8d6126
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions bazel/workspace0.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,21 @@ def gl_cpp_workspace0(name = None):
http_archive,
name = "rules_cc",
urls = [
"https://github.com/bazelbuild/rules_cc/releases/download/0.0.9/rules_cc-0.0.9.tar.gz",
"https://github.com/bazelbuild/rules_cc/releases/download/0.0.15/rules_cc-0.0.15.tar.gz",
],
sha256 = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
strip_prefix = "rules_cc-0.0.15",
)

# protobuf requires this
maybe(
http_archive,
name = "bazel_skylib",
sha256 = "d00f1389ee20b60018e92644e0948e16e350a7707219e7a390fb0a99b6ec9262",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.7.0/bazel-skylib-1.7.0.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.7.0/bazel-skylib-1.7.0.tar.gz",
],
sha256 = "2037875b9a4456dce4a79d112a8ae885bbc4aad968e6587dca6e64f3a0900cdf",
strip_prefix = "rules_cc-0.0.9",
)

# The version of `rules_apple` loaded by gRPC is too old for Bazel 7.
Expand Down

0 comments on commit c8d6126

Please sign in to comment.