You've already forked protocolbuffers.protobuf-javascript

The proto descriptor API has changed to return absl::string_views instead of std::string, which is preventing users from building at HEAD. This change bumps our dependency to protobuf 30.1 and migrates our code generator as needed so we can build with absl::string_view values. At the same time, Bazel is getting ready to drop workspace support (disabled by default as of EOY2024/Bazel 8). Protobuf still seems to support both, but opportunistically taking this opportunity to just use Bazel models. We can temporarily add back workspace support if users actually need it.
6 lines
244 B
Python
6 lines
244 B
Python
module(name = "protobuf_javascript", version = "3.21.4")
|
|
|
|
bazel_dep(name = "protobuf", version = "30.1", repo_name = "com_google_protobuf")
|
|
bazel_dep(name = "rules_pkg", version = "1.0.1")
|
|
bazel_dep(name = "abseil-cpp", version = "20250127.0")
|