From d0df1ff5d0eb8f98481a7ae27778e7008f7c4d05 Mon Sep 17 00:00:00 2001 From: Richard Patel Date: Sat, 17 Dec 2022 04:21:02 +0000 Subject: [PATCH] Update Bazel deps Change-Id: I213e94094b131dc9f498b3433922e5eed6bec5d0 Reviewed-on: https://git.firedancer.io/c/radiance/+/311 --- BUILD | 3 +-- WORKSPACE | 16 ++++++++-------- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/BUILD b/BUILD index 04afeeb..c6ccb81 100644 --- a/BUILD +++ b/BUILD @@ -1,4 +1,5 @@ load("@bazel_gazelle//:def.bzl", "gazelle") +load("@com_github_bazelbuild_buildtools//buildifier:def.bzl", "buildifier") # gazelle:prefix go.firedancer.io/radiance # gazelle:build_file_name BUILD @@ -21,8 +22,6 @@ alias( visibility = ["//visibility:public"], ) -load("@com_github_bazelbuild_buildtools//buildifier:def.bzl", "buildifier") - buildifier( name = "buildifier", ) diff --git a/WORKSPACE b/WORKSPACE index 5a208f1..e029bde 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -27,7 +27,7 @@ http_archive( strip_prefix = "buildtools-5.1.0", urls = [ "https://github.com/bazelbuild/buildtools/archive/5.1.0.tar.gz", - ] + ], ) load("@com_github_bazelbuild_buildtools//buildifier:deps.bzl", "buildifier_dependencies") @@ -71,10 +71,10 @@ http_archive( http_archive( name = "io_bazel_rules_go", - sha256 = "099a9fb96a376ccbbb7d291ed4ecbdfd42f6bc822ab77ae6f1b5cb9e914e94fa", + sha256 = "56d8c5a5c91e1af73eca71a6fab2ced959b67c86d12ba37feedb0a2dfea441a6", urls = [ - "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.35.0/rules_go-v0.35.0.zip", - "https://github.com/bazelbuild/rules_go/releases/download/v0.35.0/rules_go-v0.35.0.zip", + "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.37.0/rules_go-v0.37.0.zip", + "https://github.com/bazelbuild/rules_go/releases/download/v0.37.0/rules_go-v0.37.0.zip", ], ) @@ -92,7 +92,7 @@ load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies") go_rules_dependencies() -go_register_toolchains(version = "1.19.2") +go_register_toolchains(version = "1.19.4") ################################################################################ # Custom Go dependencies # @@ -117,9 +117,9 @@ go_repositories() http_archive( name = "com_google_protobuf", - sha256 = "1add10f9bd92775b91f326da259f243881e904dd509367d5031d4c782ba82810", - strip_prefix = "protobuf-3.21.9", - urls = ["https://github.com/protocolbuffers/protobuf/archive/v3.21.9.tar.gz"], + sha256 = "930c2c3b5ecc6c9c12615cf5ad93f1cd6e12d0aba862b572e076259970ac3a53", + strip_prefix = "protobuf-3.21.12", + urls = ["https://github.com/protocolbuffers/protobuf/archive/v3.21.12.tar.gz"], ) load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")