Skip to content

Commit

Permalink
Replace rules_proto with underlying protobuf module.
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Peterson <benjamin@engflow.com>
  • Loading branch information
benjaminp committed Dec 9, 2024
1 parent 623c623 commit 917140b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ bazel_dep(name = "buildifier_prebuilt", version = "6.4.0")
bazel_dep(name = "platforms", version = "0.0.10")
bazel_dep(name = "rules_java", version = "8.6.1")
bazel_dep(name = "rules_jvm_external", version = "6.2")
bazel_dep(name = "rules_proto", version = "6.0.2")
bazel_dep(name = "protobuf", version = "27.2")
bazel_dep(name = "protobuf", version = "29.1")

# =========================================
# Java dependencies
Expand Down
4 changes: 2 additions & 2 deletions proto/BUILD
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
load("@rules_java//java:defs.bzl", "java_proto_library")
load("@rules_proto//proto:defs.bzl", "proto_library")
load("@protobuf//bazel:java_proto_library.bzl", "java_proto_library")
load("@protobuf//bazel:proto_library.bzl", "proto_library")

proto_library(
name = "bazel_invocation_analyzer_proto",
Expand Down

0 comments on commit 917140b

Please sign in to comment.