# Copyright 2014 The Bazel Authors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Once nested repositories work, this file should cease to exist. load("//go/private:common.bzl", "MINIMUM_BAZEL_VERSION") load("//go/private/skylib/lib:versions.bzl", "versions") load("//go/private:nogo.bzl", "DEFAULT_NOGO", "go_register_nogo") load("//proto:gogo.bzl", "gogo_special_proto") load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") def go_rules_dependencies(force = False): """Declares workspaces the Go rules depend on. Workspaces that use rules_go should call this. See https://github.com/bazelbuild/rules_go/blob/master/go/dependencies.rst#overriding-dependencies for information on each dependency. Instructions for updating this file are in https://github.com/bazelbuild/rules_go/wiki/Updating-dependencies. PRs updating dependencies are NOT ACCEPTED. See https://github.com/bazelbuild/rules_go/blob/master/go/dependencies.rst#overriding-dependencies for information on choosing different versions of these repositories in your own project. """ if getattr(native, "bazel_version", None): versions.check(MINIMUM_BAZEL_VERSION, bazel_version = native.bazel_version) if force: wrapper = _always else: wrapper = _maybe # Needed by rules_go implementation and tests. # We can't call bazel_skylib_workspace from here. At the moment, it's only # used to register unittest toolchains, which rules_go does not need. # releaser:upgrade-dep bazelbuild bazel-skylib wrapper( http_archive, name = "bazel_skylib", # 1.3.0, latest as of 2023-01-22 urls = [ "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz", "https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz", ], sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506", strip_prefix = "", ) # Needed for nogo vet checks and go/packages. # releaser:upgrade-dep golang tools wrapper( http_archive, name = "org_golang_x_tools", # v0.5.0, latest as of 2023-01-22 urls = [ "https://mirror.bazel.build/github.com/golang/tools/archive/refs/tags/v0.5.0.zip", "https://github.com/golang/tools/archive/refs/tags/v0.5.0.zip", ], sha256 = "7b22a085a24e9da2fb9db9b97e9e7325387e66153997f17e44129df2943ddee7", strip_prefix = "tools-0.5.0", patches = [ # deletegopls removes the gopls subdirectory. It contains a nested # module with additional dependencies. It's not needed by rules_go. # releaser:patch-cmd rm -rf gopls Label("//third_party:org_golang_x_tools-deletegopls.patch"), # releaser:patch-cmd gazelle -repo_root . -go_prefix golang.org/x/tools -go_naming_convention import_alias Label("//third_party:org_golang_x_tools-gazelle.patch"), ], patch_args = ["-p1"], ) # releaser:upgrade-dep golang sys wrapper( http_archive, name = "org_golang_x_sys", # v0.4.0, latest as of 2023-01-22 urls = [ "https://mirror.bazel.build/github.com/golang/sys/archive/refs/tags/v0.4.0.zip", "https://github.com/golang/sys/archive/refs/tags/v0.4.0.zip", ], sha256 = "30995c105724d9d7efb229df3cb26492b47e666bb6f5022530899532896c209b", strip_prefix = "sys-0.4.0", patches = [ # releaser:patch-cmd gazelle -repo_root . -go_prefix golang.org/x/sys -go_naming_convention import_alias Label("//third_party:org_golang_x_sys-gazelle.patch"), ], patch_args = ["-p1"], ) # Needed by golang.org/x/tools/go/packages # releaser:upgrade-dep golang xerrors wrapper( http_archive, name = "org_golang_x_xerrors", # master, as of 2023-01-22 urls = [ "https://mirror.bazel.build/github.com/golang/xerrors/archive/04be3eba64a22a838cdb17b8dca15a52871c08b4.zip", "https://github.com/golang/xerrors/archive/04be3eba64a22a838cdb17b8dca15a52871c08b4.zip", ], sha256 = "ffad2b06ef2e09d040da2ff08077865e99ab95d4d0451737fc8e33706bb01634", strip_prefix = "xerrors-04be3eba64a22a838cdb17b8dca15a52871c08b4", patches = [ # releaser:patch-cmd gazelle -repo_root . -go_prefix golang.org/x/xerrors -go_naming_convention import_alias Label("//third_party:org_golang_x_xerrors-gazelle.patch"), ], patch_args = ["-p1"], ) # Proto dependencies # These are limited as much as possible. In most cases, users need to # declare these on their own (probably via go_repository rules generated # with 'gazelle update-repos -from_file=go.mod). There are several # reasons for this: # # * com_google_protobuf has its own dependency macro. We can't load # the macro here. # * rules_proto also has a dependency macro. It's only needed by tests and # by gogo_special_proto. Users will need to declare it anyway. # * org_golang_google_grpc has too many dependencies for us to maintain. # * In general, declaring dependencies here confuses users when they # declare their own dependencies later. Bazel ignores these. # * Most proto repos are updated more frequently than rules_go, and # we can't keep up. # Go protobuf runtime library and utilities. # releaser:upgrade-dep protocolbuffers protobuf-go wrapper( http_archive, name = "org_golang_google_protobuf", sha256 = "cbaac40c1faf6a3647316d46ec9c614e99aa92c539a78b7c1e4dec3ff5f73694", # v1.28.1, latest as of 2023-01-22 urls = [ "https://mirror.bazel.build/github.com/protocolbuffers/protobuf-go/archive/refs/tags/v1.28.1.zip", "https://github.com/protocolbuffers/protobuf-go/archive/refs/tags/v1.28.1.zip", ], strip_prefix = "protobuf-go-1.28.1", patches = [ # releaser:patch-cmd gazelle -repo_root . -go_prefix google.golang.org/protobuf -go_naming_convention import_alias -proto disable_global Label("//third_party:org_golang_google_protobuf-gazelle.patch"), ], patch_args = ["-p1"], ) # Legacy protobuf compiler, runtime, and utilities. # We still use protoc-gen-go because the new one doesn't support gRPC, and # the gRPC compiler doesn't exist yet. # We need to apply a patch to enable both go_proto_library and # go_library with pre-generated sources. # releaser:upgrade-dep golang protobuf wrapper( http_archive, name = "com_github_golang_protobuf", # v1.5.2, latest as of 2023-01-22 urls = [ "https://mirror.bazel.build/github.com/golang/protobuf/archive/refs/tags/v1.5.2.zip", "https://github.com/golang/protobuf/archive/refs/tags/v1.5.2.zip", ], sha256 = "5bd0a70e2f3829db9d0e340887af4e921c5e0e5bb3f8d1be49a934204cb16445", strip_prefix = "protobuf-1.5.2", patches = [ # releaser:patch-cmd gazelle -repo_root . -go_prefix github.com/golang/protobuf -go_naming_convention import_alias -proto disable_global Label("//third_party:com_github_golang_protobuf-gazelle.patch"), ], patch_args = ["-p1"], ) # Extra protoc plugins and libraries. # Doesn't belong here, but low maintenance. # releaser:upgrade-dep mwitkow go-proto-validators wrapper( http_archive, name = "com_github_mwitkow_go_proto_validators", # v0.3.2, latest as of 2023-01-22 urls = [ "https://mirror.bazel.build/github.com/mwitkow/go-proto-validators/archive/refs/tags/v0.3.2.zip", "https://github.com/mwitkow/go-proto-validators/archive/refs/tags/v0.3.2.zip", ], sha256 = "d8697f05a2f0eaeb65261b480e1e6035301892d9fc07ed945622f41b12a68142", strip_prefix = "go-proto-validators-0.3.2", # Bazel support added in v0.3.0, so no patches needed. ) # releaser:upgrade-dep gogo protobuf wrapper( http_archive, name = "com_github_gogo_protobuf", # v1.3.2, latest as of 2023-01-22 urls = [ "https://mirror.bazel.build/github.com/gogo/protobuf/archive/refs/tags/v1.3.2.zip", "https://github.com/gogo/protobuf/archive/refs/tags/v1.3.2.zip", ], sha256 = "f89f8241af909ce3226562d135c25b28e656ae173337b3e58ede917aa26e1e3c", strip_prefix = "protobuf-1.3.2", patches = [ # releaser:patch-cmd gazelle -repo_root . -go_prefix github.com/gogo/protobuf -go_naming_convention import_alias -proto legacy Label("//third_party:com_github_gogo_protobuf-gazelle.patch"), ], patch_args = ["-p1"], ) wrapper( gogo_special_proto, name = "gogo_special_proto", ) # go_library targets with pre-generated sources for Well Known Types # and Google APIs. # Doesn't belong here, but it would be an annoying source of errors if # this weren't generated with -proto disable_global. # releaser:upgrade-dep googleapis go-genproto wrapper( http_archive, name = "org_golang_google_genproto", # main, as of 2023-01-22 urls = [ "https://mirror.bazel.build/github.com/googleapis/go-genproto/archive/9d59e20e5cd16f7c64a2107aeec4c4e843a6df73.zip", "https://github.com/googleapis/go-genproto/archive/9d59e20e5cd16f7c64a2107aeec4c4e843a6df73.zip", ], sha256 = "8896d6cf7041c5300d4e3963887fc50a641f0afa969d2bc9323879a6b8c80ce4", strip_prefix = "go-genproto-9d59e20e5cd16f7c64a2107aeec4c4e843a6df73", patches = [ # releaser:patch-cmd gazelle -repo_root . -go_prefix google.golang.org/genproto -go_naming_convention import_alias -proto disable_global Label("//third_party:org_golang_google_genproto-gazelle.patch"), ], patch_args = ["-p1"], ) # go_proto_library targets for gRPC and Google APIs. # TODO(#1986): migrate to com_google_googleapis. This workspace was added # before the real workspace supported Bazel. Gazelle resolves dependencies # here. Gazelle should resolve dependencies to com_google_googleapis # instead, and we should remove this. # releaser:upgrade-dep googleapis googleapis wrapper( http_archive, name = "go_googleapis", # master, as of 2023-01-22 urls = [ "https://mirror.bazel.build/github.com/googleapis/googleapis/archive/9fac84a6942bd3e95fca1ffe87018adbf560c514.zip", "https://github.com/googleapis/googleapis/archive/9fac84a6942bd3e95fca1ffe87018adbf560c514.zip", ], sha256 = "92fdd9771671c27d49b1ccb46c3285bb0d277cbe834d82670b0fc0ecd66faad7", strip_prefix = "googleapis-9fac84a6942bd3e95fca1ffe87018adbf560c514", patches = [ # releaser:patch-cmd find . -name BUILD.bazel -delete Label("//third_party:go_googleapis-deletebuild.patch"), # set gazelle directives; change workspace name Label("//third_party:go_googleapis-directives.patch"), # releaser:patch-cmd gazelle -repo_root . Label("//third_party:go_googleapis-gazelle.patch"), ], patch_args = ["-E", "-p1"], ) # releaser:upgrade-dep golang mock _maybe( http_archive, name = "com_github_golang_mock", # v1.7.0-rc.1, latest as of 2023-01-22 urls = [ "https://mirror.bazel.build/github.com/golang/mock/archive/refs/tags/v1.7.0-rc.1.zip", "https://github.com/golang/mock/archive/refs/tags/v1.7.0-rc.1.zip", ], patches = [ # releaser:patch-cmd gazelle -repo_root . -go_prefix github.com/golang/mock -go_naming_convention import_alias Label("//third_party:com_github_golang_mock-gazelle.patch"), ], patch_args = ["-p1"], sha256 = "5359c78b0c1649cf7beb3b48ff8b1d1aaf0243b22ea4789aba94805280075d8e", strip_prefix = "mock-1.7.0-rc.1", ) # This may be overridden by go_register_toolchains, but it's not mandatory # for users to call that function (they may declare their own @go_sdk and # register their own toolchains). wrapper( go_register_nogo, name = "io_bazel_rules_nogo", nogo = DEFAULT_NOGO, ) def _maybe(repo_rule, name, **kwargs): if name not in native.existing_rules(): repo_rule(name = name, **kwargs) def _always(repo_rule, name, **kwargs): repo_rule(name = name, **kwargs)