From fa3f0947ec49bd1b82d6f8bf0f1d8ebd04113ff9 Mon Sep 17 00:00:00 2001 From: iceboy Date: Sun, 16 Jun 2024 18:03:28 -0700 Subject: [PATCH] update dependencies --- WORKSPACE | 42 +++++++++++++++++++++--------------------- net/tools/rpc-relay.cc | 1 + 2 files changed, 22 insertions(+), 21 deletions(-) diff --git a/WORKSPACE b/WORKSPACE index f073f1a..57451f2 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -3,44 +3,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/v2.0.0.tar.gz"], + integrity = "sha256-nduQMXmPT4dU0A/KLxpo7PnQ+D36xyOa8TEeT9mlZcQ=", + strip_prefix = "flatbuffers-2.0.0", ) 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( diff --git a/net/tools/rpc-relay.cc b/net/tools/rpc-relay.cc index 2d8f693..da57739 100644 --- a/net/tools/rpc-relay.cc +++ b/net/tools/rpc-relay.cc @@ -7,6 +7,7 @@ #include "absl/strings/escaping.h" #include "absl/strings/numbers.h" +#include "absl/strings/str_split.h" #include "base/flags.h" #include "base/logging.h" #include "net/asio.h"