Releases: aspect-build/toolchains_protoc
Releases · aspect-build/toolchains_protoc
v0.1.2
Using Bzlmod with Bazel 6
- Enable with
common --enable_bzlmodin.bazelrc. - Add to your
MODULE.bazelfile:
bazel_dep(name = "toolchains_protoc", version = "0.1.2")Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "toolchains_protoc",
sha256 = "915791579a333437fd3ce39659f14d503ddfb9e799b2797259d5964d66d6203d",
strip_prefix = "rules_protoc-0.1.2",
url = "https://github.com/alexeagle/rules_protoc/releases/download/v0.1.2/rules_protoc-v0.1.2.tar.gz",
)
######################
# rules_protoc setup #
######################
# Fetches the rules_protoc dependencies.
# If you want to have a different version of some dependency,
# you should fetch it *before* calling this.
# Alternatively, you can skip calling this function, so long as you've
# already fetched all the dependencies.
load("@toolchains_protoc//protoc:repositories.bzl", "rules_protoc_dependencies")
rules_protoc_dependencies()
load("@rules_proto//proto:repositories.bzl", "rules_proto_dependencies")
rules_proto_dependencies()
load("@bazel_features//:deps.bzl", "bazel_features_deps")
bazel_features_deps()
load("@toolchains_protoc//protoc:toolchain.bzl", "protoc_toolchains")
protoc_toolchains(
name = "protoc_toolchains",
version = "v25.3",
)Full Changelog: v0.1.1...v0.1.2