From d51704210790295be2fb72643ccc653ace663031 Mon Sep 17 00:00:00 2001 From: iceboy Date: Sun, 16 Jun 2024 18:01:55 -0700 Subject: [PATCH] update dependencies --- WORKSPACE | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/WORKSPACE b/WORKSPACE index 4df3a78..142b70f 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -5,44 +5,44 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "bazel_skylib", - urls = [ - "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz", - "https://github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz", - ], - sha256 = "f7be3474d42aae265405a592bb7da8e171919d74c16f082a5457840f06054728", + urls = ["https://github.com/bazelbuild/bazel-skylib/releases/download/1.5.0/bazel-skylib-1.5.0.tar.gz"], + integrity = "sha256-zVWgYudjuTSZIfD124w5MyiNyLpPdt2UFqrGis7jy5Q=", ) -git_repository( +http_archive( name = "boringssl", - # chromium-107.0.5304.121 (linux/stable) - commit = "7b00d84b025dff0c392c2df5ee8aa6d3c63ad539", - remote = "https://github.com/google/boringssl.git", + # 0.0.0-20240126-22d349c + urls = ["https://github.com/google/boringssl/archive/22d349c4596e81425ec88f82fab47063a9a2bac6.tar.gz"], + integrity = "sha256-rMEdcuN6QX90hSzHXUCE7HEhcnwBvR6bVSUjHJsDwnc=", + strip_prefix = "boringssl-22d349c4596e81425ec88f82fab47063a9a2bac6", ) -git_repository( +http_archive( name = "com_github_google_benchmark", - commit = "0d98dba29d66e93259db7daa53a9327df767a415", - remote = "https://github.com/google/benchmark.git", + urls = ["https://github.com/google/benchmark/archive/refs/tags/v1.8.4.tar.gz"], + integrity = "sha256-PnBZtrEfsbvijjPgJRk5jKlMGBiHTr7RjlBNxvcJvkU=", + strip_prefix = "benchmark-1.8.4", ) -git_repository( +http_archive( name = "com_github_google_flatbuffers", - commit = "a9a295fecf3fbd5a4f571f53b01f63202a3e2113", - remote = "https://github.com/google/flatbuffers.git", + urls = ["https://github.com/google/flatbuffers/archive/refs/tags/v23.3.3.tar.gz"], + integrity = "sha256-iv+YXaMKqrN+345bAv2jPtTL3ZYmmajir5j97zBvTk0=", + strip_prefix = "flatbuffers-23.3.3", ) http_archive( name = "com_google_absl", - sha256 = "54707f411cb62a26a776dad5fd60829098c181700edcd022ea5c2ca49e9b7ef1", - strip_prefix = "abseil-cpp-20220623.1", - urls = ["https://github.com/abseil/abseil-cpp/archive/refs/tags/20220623.1.zip"], + urls = ["https://github.com/abseil/abseil-cpp/releases/download/20240116.2/abseil-cpp-20240116.2.tar.gz"], + integrity = "sha256-czcmuMOm05pBINfkXqi0GkNM2s3kAculAPFCNsSbOdw=", + strip_prefix = "abseil-cpp-20240116.2", ) http_archive( name = "com_google_googletest", - sha256 = "24564e3b712d3eb30ac9a85d92f7d720f60cc0173730ac166f27dda7fed76cb2", - strip_prefix = "googletest-release-1.12.1", - urls = ["https://github.com/google/googletest/archive/refs/tags/release-1.12.1.zip"], + urls = ["https://github.com/google/googletest/archive/refs/tags/v1.14.0.tar.gz"], + integrity = "sha256-itWYxzrXluDYKAsILOvYKmMNc+c808cAV5OKZQG7pdc=", + strip_prefix = "googletest-1.14.0", ) git_repository(